Skip to content
Open
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
- name: Init rustup toolchain
# somehow rustup show will take care to initialize the version based on the toolchain file
run: rustup show
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: setup rust build cache
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -86,7 +88,7 @@ jobs:
- name: Check with Clippy
run: cargo clippy --all-targets ${{ matrix.features }} ${{ matrix.build }} -- -D warnings
- name: Run tests
run: cargo test ${{ matrix.features }} ${{ matrix.build }} --verbose
run: cargo nextest run ${{ matrix.features }} ${{ matrix.build }} --verbose

build:
runs-on: ${{matrix.os}}
Expand Down