From b011805fc7dd14353ec9a55dfe8adb81127bb2c6 Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Sun, 20 Feb 2022 22:18:43 -0800 Subject: [PATCH] ci: use stable Rust for builds We still use nightly Clippy to ensure that 1) it builds under nightly and 2) that we pick up any new lints. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01c80448c..3e8027e8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install Rust nightly + - name: Install Rust (stable) uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true profile: minimal - name: Build @@ -31,7 +31,7 @@ jobs: RUST_BACKTRACE: 1 clippy: - name: Clippy check + name: Clippy check (nightly) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2