Skip to content

Commit

Permalink
👷 Use cargo nextest to run tests in CI (#25)
Browse files Browse the repository at this point in the history
* 🔨 Use cargo nextest

* 📝 Update changelog

* Include doctest
  • Loading branch information
christeefy authored Dec 9, 2024
1 parent 6e98223 commit a289cf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: "cargo test"
run: cargo test
- uses: taiki-e/install-action@v2
with:
tool: nextest

- name: "Tests"
run: cargo nextest run

- name: "Doctests"
run: cargo test --doc
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- (pull/14) Derived `PartialEq` for all types generated by `quicktype`
- (pull/14) Renamed `ParamsLoader` and `ContextLoader` traits to `LoadParams` and `LoadContext` respectively
- (pull/14) Fixed failing unit tests in `context_loader.rs`
- (pull/25) Use `cargo nextest` for GitHub CI jobs

## 0.1.6

Expand Down

0 comments on commit a289cf9

Please sign in to comment.