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 59b9f23 commit 8092e60Copy full SHA for 8092e60
.github/workflows/linux.yml
@@ -14,11 +14,12 @@ jobs:
14
fail-fast: false
15
matrix:
16
os: [ubuntu-16.04, ubuntu-18.04]
17
+ rust_toolchain: [stable, nightly, beta]
18
runs-on: ${{ matrix.os }}
19
steps:
20
- uses: actions/checkout@v1
21
- name: Install Rust
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
22
+ run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${{ matrix.rust_toolchain }}
23
- name: Build and test
24
run: |
25
source $HOME/.cargo/env
0 commit comments