Skip to content

Commit eeede73

Browse files
Merge pull request #199 from matthiasbeyer/actions-dependencies
actions: Let test, fmt, clippy only run if check succeeded
2 parents e2be70e + dae9dbb commit eeede73

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/msrv.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
command: check
3030

3131
test:
32+
needs: [check]
3233
name: Test Suite
3334
runs-on: ubuntu-latest
3435
strategy:
@@ -53,6 +54,7 @@ jobs:
5354
command: test
5455

5556
fmt:
57+
needs: [check]
5658
name: Rustfmt
5759
runs-on: ubuntu-latest
5860
strategy:
@@ -80,6 +82,7 @@ jobs:
8082
args: --all -- --check
8183

8284
clippy:
85+
needs: [check]
8386
name: Clippy
8487
runs-on: ubuntu-latest
8588
strategy:

0 commit comments

Comments
 (0)