File tree 1 file changed +18
-1
lines changed
1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -153,12 +153,29 @@ jobs:
153
153
]
154
154
steps :
155
155
- uses : actions/checkout@v3
156
- - uses : dtolnay/rust-toolchain@master
156
+ - uses : dtolnay/rust-toolchain@stable
157
157
with :
158
158
toolchain : ${{ matrix.toolchain }}
159
159
- uses : Swatinem/rust-cache@v2
160
160
- run : cargo test --features=std
161
161
162
+ windows7 :
163
+ name : Windows 7 Test
164
+ runs-on : windows-2022
165
+ strategy :
166
+ matrix :
167
+ target : [
168
+ i686-win7-windows-msvc,
169
+ x86_64-win7-windows-msvc,
170
+ ]
171
+ steps :
172
+ - uses : actions/checkout@v3
173
+ - uses : dtolnay/rust-toolchain@nightly
174
+ with :
175
+ components : rust-src
176
+ - uses : Swatinem/rust-cache@v2
177
+ - run : cargo test --target=${{ matrix.target }} -Z build-std --features=std
178
+
162
179
cross-tests :
163
180
name : Cross Test
164
181
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments