Skip to content

Commit

Permalink
ci: Add a bazel test step to the CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed Feb 6, 2024
1 parent 15e5569 commit ebe7ff3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,14 @@ jobs:
run: scons distcheck
env:
CC: ${{ matrix.compiler }}
bazel_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@v3
- name: mount bazel cache
uses: actions/cache@v4
with:
path: "~/.cache/bazel"
key: bazel
- run: bazel test //...

0 comments on commit ebe7ff3

Please sign in to comment.