We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd9161 commit f4e4736Copy full SHA for f4e4736
.github/workflows/test.yml
@@ -18,10 +18,20 @@ jobs:
18
runs-on: ${{ matrix.os }}
19
strategy:
20
matrix:
21
- os: [macos-latest, ubuntu-latest, windows-latest]
+ os:
22
+ - macos-latest
23
+ - ubuntu-latest
24
+ - windows-latest
25
+ toolchain:
26
+ - stable
27
+ - beta
28
+ - nightly
29
steps:
30
- uses: actions/checkout@v4
31
32
+ - name: Install Rust toolchain
33
+ run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
34
+
35
- name: Build
36
run: cargo build --verbose
37
0 commit comments