Skip to content

Commit d4a787e

Browse files
committed
Add test for 1.71.1 also
Signed-off-by: Tom Kaitchuck <Tom.Kaitchuck@gmail.com>
1 parent 0a2437e commit d4a787e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/rust.yml

+27
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ jobs:
6262
toolchain: 1.60.0
6363
targets: armv7-unknown-linux-gnueabihf
6464
- run: cargo +1.60.0 check --target armv7-unknown-linux-gnueabihf
65+
- name: Install 1.71.1
66+
uses: dtolnay/rust-toolchain@master
67+
with:
68+
toolchain: 1.71.1
69+
targets: armv7-unknown-linux-gnueabihf
70+
- run: cargo +1.71.1 check --target armv7-unknown-linux-gnueabihf
6571
aarch64-apple-darwin:
6672
name: Aarch64 Apple Darwin
6773
runs-on: macos-latest
@@ -80,6 +86,12 @@ jobs:
8086
toolchain: 1.60.0
8187
targets: aarch64-apple-darwin
8288
- run: cargo +1.60.0 check --target aarch64-apple-darwin
89+
- name: Install 1.71.1
90+
uses: dtolnay/rust-toolchain@master
91+
with:
92+
toolchain: 1.71.1
93+
targets: aarch64-apple-darwin
94+
- run: cargo +1.71.1 check --target aarch64-apple-darwin
8395
i686-unknown-linux-gnu:
8496
name: Linux i686
8597
runs-on: ubuntu-latest
@@ -103,6 +115,14 @@ jobs:
103115
- run: cargo +1.60.0 check --target i686-unknown-linux-gnu
104116
- name: check constrandom
105117
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
118+
- name: Install 1.71.1
119+
uses: dtolnay/rust-toolchain@master
120+
with:
121+
toolchain: 1.71.1
122+
targets: i686-unknown-linux-gnu
123+
- run: cargo +1.71.1 check --target i686-unknown-linux-gnu
124+
- name: check constrandom
125+
run: cargo +1.71.1 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
106126
x86_64-unknown-linux-gnu:
107127
name: Linux x86_64
108128
runs-on: ubuntu-latest
@@ -125,6 +145,13 @@ jobs:
125145
- run: cargo +1.60.0 check --target x86_64-unknown-linux-gnu
126146
- name: check constrandom
127147
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
148+
- name: Install 1.71.1
149+
uses: dtolnay/rust-toolchain@master
150+
with:
151+
toolchain: 1.71.1
152+
- run: cargo +1.71.1 check --target x86_64-unknown-linux-gnu
153+
- name: check constrandom
154+
run: cargo +1.71.1 check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
128155
thumbv6m:
129156
name: thumbv6m
130157
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)