Improved function call type-checking. #432
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Clang | |
uses: egor-tensin/setup-clang@v1 | |
with: | |
version: 16 | |
platform: x64 | |
- name: Test Debug Build | |
run: >- | |
bazel test -c dbg ... | |
- name: Test Optimized Build | |
run: >- | |
bazel test -c opt ... |