Skip to content

Commit 3b87fb0

Browse files
authored
chore: Use cargo-nextest in CI (#2546)
* use nextest in CI * install from source * no profile
1 parent 27c6efb commit 3b87fb0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/actions/rust-test/action.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,14 @@ runs:
6161
cd common
6262
../mvnw -B clean compile -DskipTests
6363
64+
- name: Install nextest
65+
shell: bash
66+
run: |
67+
cargo install cargo-nextest --locked
68+
6469
- name: Run Cargo test
6570
shell: bash
6671
run: |
6772
cd native
68-
RUST_BACKTRACE=1 cargo test
73+
RUST_BACKTRACE=1 cargo nextest run
74+

0 commit comments

Comments
 (0)