Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

👷 Use cargo nextest to run tests in CI #25

Merged
merged 3 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading