Skip to content

Commit f4e4736

Browse files
add various rust toolchains (#16)
let's get crazy
1 parent fbd9161 commit f4e4736

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,20 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
os: [macos-latest, ubuntu-latest, windows-latest]
21+
os:
22+
- macos-latest
23+
- ubuntu-latest
24+
- windows-latest
25+
toolchain:
26+
- stable
27+
- beta
28+
- nightly
2229
steps:
2330
- uses: actions/checkout@v4
2431

32+
- name: Install Rust toolchain
33+
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
34+
2535
- name: Build
2636
run: cargo build --verbose
2737

0 commit comments

Comments
 (0)