Skip to content

try with cache

try with cache #6

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 //...
# runs-on: gcr.io/bazel-public/bazel:7.3.2
# steps:
# - run: test ...