Skip to content

Commit

Permalink
Add cache & test
Browse files Browse the repository at this point in the history
  • Loading branch information
wginolas committed Jan 15, 2025
1 parent 7f37d2d commit 82a560f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "/home/runner/.cache/bazel"
key: bazel

- name: bazel build
run: |
bazel build ...
- name: bazel test
run: |
bazel test ...

0 comments on commit 82a560f

Please sign in to comment.