Skip to content

Commit

Permalink
Fix CI (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrsna-buf authored Feb 28, 2024
1 parent 1d3f06f commit 9ffa41a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ffa41a

Please sign in to comment.