From 5d3daad0d08b5137905268214af06a706b239144 Mon Sep 17 00:00:00 2001 From: Anthony Roy Date: Sat, 19 Oct 2024 00:45:15 +0000 Subject: [PATCH] Swap ./bazel with bazel in actions. PiperOrigin-RevId: 687476086 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcb474b..4e42442 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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