diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c0a2bf3..374007b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -13,17 +13,13 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true components: rustfmt, clippy - uses: actions-rs/cargo@v1 with: command: test args: --all-features --no-fail-fast - env: - CARGO_INCREMENTAL: "0" - RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests" - RUSTDOCFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests" - name: Format run: cargo fmt --all -- --check - name: Clippy