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.
2 parents 4d3a5b0 + ed08c8b commit 6621d79Copy full SHA for 6621d79
.github/workflows/build.yml
@@ -19,13 +19,11 @@ jobs:
19
runs-on: ${{ matrix.platform }}
20
steps:
21
- name: Checkout source code
22
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
23
- name: Install Rust ${{ matrix.toolchain }} toolchain
24
- uses: actions-rs/toolchain@v1
25
- with:
26
- toolchain: ${{ matrix.toolchain }}
27
- override: true
28
- profile: minimal
+ run: |
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
+ rustup override set ${{ matrix.toolchain }}
29
- name: Build on Rust ${{ matrix.toolchain }}
30
run: cargo build --verbose --color always
31
- name: Check formatting
0 commit comments