We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9916cd commit fe2264fCopy full SHA for fe2264f
.github/workflows/ci.yml
@@ -12,8 +12,13 @@ env:
12
RUSTFLAGS: -Dwarnings
13
14
jobs:
15
+ pre_ci:
16
+ uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
17
+
18
test:
19
name: Rust ${{matrix.rust}}
20
+ needs: pre_ci
21
+ if: needs.pre_ci.outputs.continue
22
runs-on: ubuntu-latest
23
strategy:
24
fail-fast: false
@@ -32,6 +37,8 @@ jobs:
32
37
33
38
node:
34
39
name: Node
40
41
35
42
36
43
timeout-minutes: 45
44
steps:
@@ -54,6 +61,8 @@ jobs:
54
61
55
62
miri:
56
63
name: Miri
64
65
57
66
58
67
env:
59
68
MIRIFLAGS: -Zmiri-strict-provenance
@@ -72,6 +81,8 @@ jobs:
72
81
73
82
fuzz:
74
83
name: Fuzz
84
85
75
86
76
87
77
88
0 commit comments