Skip to content

Commit 2b37aac

Browse files
committed
Update CI test to nextest
1 parent 45160e1 commit 2b37aac

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/rust.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
1615

1716
steps:
1817
- uses: actions/checkout@v3
@@ -24,8 +23,13 @@ jobs:
2423
toolchain: stable
2524
- name: Build
2625
run: cargo build --verbose
27-
- name: Run tests
28-
run: cargo test --verbose
26+
- name: Install latest nextest release
27+
uses: taiki-e/install-action@nextest
28+
- name: Test with latest nextest release
29+
uses: actions-rs/cargo@v1
30+
with:
31+
command: nextest
32+
args: run --all-features --profile ci
2933

3034
rustfmt:
3135
name: rustfmt

0 commit comments

Comments
 (0)