We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3915c8b + e87a64a commit b08ad85Copy full SHA for b08ad85
1 file changed
.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
10
stable,
11
beta,
12
1.60.0, # Our MSRV
13
- ]
+ ]
14
include:
15
- toolchain: stable
16
check-fmt: true
@@ -20,13 +20,11 @@ jobs:
20
runs-on: ubuntu-latest
21
steps:
22
- name: Checkout source code
23
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
24
- name: Install Rust ${{ matrix.toolchain }} toolchain
25
- uses: actions-rs/toolchain@v1
26
- with:
27
- toolchain: ${{ matrix.toolchain }}
28
- override: true
29
- 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 }}
30
- name: Pin packages to allow for MSRV
31
if: matrix.msrv
32
run: |
0 commit comments