File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 24
24
strategy :
25
25
fail-fast : false
26
26
matrix :
27
- rust : [1.56 .0, stable, beta]
27
+ rust : [1.63 .0, stable, beta]
28
28
timeout-minutes : 45
29
29
steps :
30
30
- uses : actions/checkout@v4
78
78
env :
79
79
RUSTFLAGS : -Z allow-features= --cfg procmacro2_backtrace ${{env.RUSTFLAGS}}
80
80
81
+ msrv :
82
+ name : Rust 1.56.0
83
+ needs : pre_ci
84
+ if : needs.pre_ci.outputs.continue
85
+ runs-on : ubuntu-latest
86
+ timeout-minutes : 45
87
+ steps :
88
+ - uses : actions/checkout@v4
89
+
90
+ with :
91
+ components : rust-src
92
+ - run : cargo check
93
+ - run : cargo check --no-default-features
94
+ - run : cargo check --features span-locations
95
+ - name : RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo check
96
+ run : cargo check
97
+ env :
98
+ RUSTFLAGS : --cfg procmacro2_semver_exempt ${{env.RUSTFLAGS}}
99
+ - name : RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo check --no-default-features
100
+ run : cargo check --no-default-features
101
+ env :
102
+ RUSTFLAGS : --cfg procmacro2_semver_exempt ${{env.RUSTFLAGS}}
103
+
81
104
minimal :
82
105
name : Minimal versions
83
106
needs : pre_ci
You can’t perform that action at this time.
0 commit comments