Skip to content

Commit 93eb624

Browse files
committed
Move cargo-nextest install to test jobs
1 parent 3b7f935 commit 93eb624

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- name: Build
1717
run: |
18-
cargo install cargo-nextest --locked
1918
cargo build --verbose
2019
2120
tests:
@@ -26,6 +25,7 @@ jobs:
2625
- uses: actions/checkout@v4
2726
- name: Run tests
2827
run: |
28+
cargo install cargo-nextest --locked
2929
cargo nextest --verbose
3030
3131
cargo-audit:
@@ -50,6 +50,7 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- name: Run Docker tests
5252
run: |
53+
cargo install cargo-nextest --locked
5354
cargo nextest --verbose -F docker-tests
5455
5556
native-tests:
@@ -66,4 +67,5 @@ jobs:
6667
6768
- name: Run Native tests
6869
run: |
70+
cargo install cargo-nextest --locked
6971
cargo nextest --verbose -F native-tests,high-memory-tests

0 commit comments

Comments
 (0)