From 854022dbee4e37846ba554179182d679322dccd0 Mon Sep 17 00:00:00 2001 From: Rukai Date: Sat, 8 May 2021 13:48:47 +1000 Subject: Use rust-toolchain.toml for developers and CI --- .github/workflows/rust.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to '.github') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d7b427e04..8613f7e0d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -71,10 +71,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly - target: ${{ matrix.target }} - components: rust-src, rustfmt - override: true + toolchain: stable - name: cache id: cache-target uses: actions/cache@v2 @@ -90,8 +87,6 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly - components: rustfmt - override: true + toolchain: stable - name: Check fmt run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done -- cgit