diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b8a354..9039a5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 24287e5..7197853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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