Skip to content

Commit 70f74ed

Browse files
committed
Test windows nightly
1 parent 6fa4b85 commit 70f74ed

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,18 @@ jobs:
2626
rust: stable
2727
- os: macos-latest
2828
rust: nightly
29-
# Note that these are on nightly due to rust-lang/rust#63700 not being
30-
# on stable yet
3129
- os: windows-latest
3230
rust: stable-x86_64-msvc
3331
- os: windows-latest
3432
rust: stable-i686-msvc
3533
- os: windows-latest
3634
rust: stable-x86_64-gnu
35+
- os: windows-latest
36+
rust: nightly-x86_64-msvc
37+
- os: windows-latest
38+
rust: nightly-i686-msvc
39+
- os: windows-latest
40+
rust: nightly-x86_64-gnu
3741
steps:
3842
- uses: actions/checkout@v3
3943
with:
@@ -49,7 +53,7 @@ jobs:
4953
- name: Force frame pointers
5054
run: echo RUSTFLAGS="-Cforce-frame-pointers $RUSTFLAGS" >> $GITHUB_ENV
5155
shell: bash
52-
if: matrix.rust == 'stable-i686-msvc'
56+
if: endsWith(matrix.rust, '-i686-msvc')
5357

5458
- run: cargo build
5559
- run: cargo test

0 commit comments

Comments
 (0)