Skip to content

Commit

Permalink
Also run cargo test in CI
Browse files Browse the repository at this point in the history
This crate does not currently have any tests, but `cargo test` performs
a full build, unlike `cargo clippy`. We should be checking that the
build process succeeds, and this way if we add tests in the future they
will run in CI as well.
  • Loading branch information
dmartin committed Feb 3, 2025
1 parent 986b7ee commit 198c5ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ jobs:
- name: Run clippy
run: |
cargo clippy -- -D warnings
- name: Run tests
run: |
cargo test

0 comments on commit 198c5ca

Please sign in to comment.