We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2225a commit 9bc9c5eCopy full SHA for 9bc9c5e
1 file changed
.github/workflows/ci.yml
@@ -43,17 +43,32 @@ jobs:
43
- macos-latest
44
- windows-latest
45
rust:
46
- - '1.86'
47
- - '1.87'
48
- - '1.88'
49
- - '1.89'
50
- - '1.90'
+ - "1.86"
+ - "1.87"
+ - "1.88"
+ - "1.89"
+ - "1.90"
51
- stable
52
- beta
53
- nightly
54
+ rustc_bootstrap:
55
+ - "0"
56
+ - "1"
57
+ exclude:
58
+ # bootstrap is only relevant for non-nightly toolchains
59
+ - os: ubuntu-latest
60
+ rust: nightly
61
+ rustc_bootstrap: "0"
62
+ - os: macos-latest
63
64
65
+ - os: windows-latest
66
67
68
runs-on: ${{ matrix.os }}
69
env:
70
RUSTFLAGS: "-D warnings"
71
+ RUSTC_BOOTSTRAP: ${{ matrix.rustc_bootstrap }}
72
steps:
73
- name: Checkout
74
uses: actions/checkout@v4
0 commit comments