diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index b50a8f64..f86b1a06 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -6,7 +6,7 @@ on: jobs: build_and_test_default: - name: bazel.${{ matrix.os }}.${{ matrix.bzlmod && 'bzlmod' || 'no_bzlmod' }} + name: bazel.${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -28,8 +28,8 @@ jobs: - name: build run: | - bazel build ${{ matrix.bzlmod && '--enable_bzlmod' || '--noenable_bzlmod' }} //:benchmark //:benchmark_main //test/... + bazel build //:benchmark //:benchmark_main //test/... - name: test run: | - bazel test ${{ matrix.bzlmod && '--enable_bzlmod' || '--noenable_bzlmod' }} --test_output=all //test/... + bazel test --test_output=all //test/...