Skip to content

Merge pull request #73 from wrmorris-google/crash-fix #46

Merge pull request #73 from wrmorris-google/crash-fix

Merge pull request #73 from wrmorris-google/crash-fix #46

Workflow file for this run

# 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 //...