Skip to content

Commit

Permalink
tests: add Rust Makefile test directive
Browse files Browse the repository at this point in the history
Signed-off-by: Shane Utt <[email protected]>
  • Loading branch information
shaneutt committed Sep 12, 2024
1 parent 1ab9382 commit 0e5a589
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ jobs:
- name: Check clippy
run: |
make lint
- name: Run Tests
run: |
make test
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@ lint: ## Lint Rust code
# Testing
# ------------------------------------------------------------------------------

.PHONY: test
test: ## Run tests
cargo test -vv

.PHONY: test.integration.deprecated
test.integration.deprecated: ## Run the deprecated Golang integration tests
go clean -testcache
Expand Down

0 comments on commit 0e5a589

Please sign in to comment.