Add a helper library for client APIs to verify new claims (#15) #38
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: Backend CI | |
on: push | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Bazel | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/bazel | |
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'WORKSPACE') }} | |
restore-keys: | | |
${{ runner.os }}-bazel- | |
- uses: actions/checkout@v3 | |
- name: Run all tests | |
run: bazelisk query 'tests(//... except kind(oci_*, //...))' | xargs bazelisk test |