Skip to content

fix

fix #7

Workflow file for this run

name: Run tests
on: [push]
jobs:
run-bazel-test:
runs-on: ubuntu-latest
steps:
- name: Cache bazel
uses: actions/[email protected]
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}
- uses: actions/checkout@v2
- run: bazel test //...