Merge pull request #73 from wrmorris-google/crash-fix #46
This file contains hidden or 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
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
name: BazelTest | |
on: [push, workflow_dispatch, pull_request] | |
jobs: | |
bazel_test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: bazel test --test_output=errors --keep_going //... | |
- name: Opt-Mode Test | |
run: bazel test -c opt --test_output=errors --keep_going //... |