ci: switch to stable toolchain

This commit is contained in:
Antoine Martin 2021-03-31 13:48:15 +02:00
parent 56f82c6467
commit 378823a1fb

View file

@ -10,11 +10,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install nightly toolchain
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
- name: Run cargo check
@ -29,11 +29,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install nightly toolchain
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
- name: Run cargo test
@ -48,11 +48,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install nightly toolchain
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: rustfmt, clippy