Skip to content

Commit

Permalink
Swap ./bazel with bazel in actions.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 687476086
  • Loading branch information
Ant2888 committed Oct 19, 2024
1 parent 0763d95 commit 5d3daad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
- name: Build
run: ./bazel build --test_output=errors //...
run: bazel build --test_output=errors //...
- name: Test
run: ./bazel test --test_output=errors //...
run: bazel test --test_output=errors //...

- name: Compress cache
run: rm -rf $(./bazel info repository_cache)
run: rm -rf $(bazel info repository_cache)

- name: Save bazel cache
uses: actions/cache/save@v4
Expand Down

0 comments on commit 5d3daad

Please sign in to comment.