diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ba7eac1..135b91c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -22,7 +22,7 @@ jobs: key: ${{ runner.os }}-bazel-cache - uses: actions/checkout@v2 - name: bazel test - run: bazel test --test_output=errors //... + run: make test macos: runs-on: macos-latest steps: @@ -36,7 +36,7 @@ jobs: key: ${{ runner.os }}-bazel-cache - uses: actions/checkout@v2 - name: bazel test - run: bazel test --test_output=errors //... + run: make test windows: runs-on: windows-latest steps: @@ -50,4 +50,4 @@ jobs: key: ${{ runner.os }}-bazel-cache - uses: actions/checkout@v2 - name: bazel test - run: bazel test --test_output=errors //... + run: make test diff --git a/Makefile b/Makefile index 21fe82e..4983b93 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ clean: ## Delete intermediate build artifacts .PHONY: test test: ## Run unit tests - $(BAZEL) test //... + $(BAZEL) test --noenable_bzlmod //... .PHONY: generate generate: $(BIN)/license-header ## Regenerate code and licenses