summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 5518d905..1a8ac289 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install latest nightly
+ - name: Install rust
uses: actions-rs/toolchain@v1
with:
- toolchain: nightly
+ toolchain: stable
override: true
- name: Run cargo build
@@ -31,10 +31,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install latest nightly
+ - name: Install rust
uses: actions-rs/toolchain@v1
with:
- toolchain: nightly
+ toolchain: stable
override: true
- name: Run cargo test
@@ -46,10 +46,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install latest nightly
+ - name: Install latest rust
uses: actions-rs/toolchain@v1
with:
- toolchain: nightly
+ toolchain: stable
override: true
components: clippy
@@ -62,10 +62,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install latest nightly
+ - name: Install latest rust
uses: actions-rs/toolchain@v1
with:
- toolchain: nightly
+ toolchain: stable
override: true
components: rustfmt