From 4c80d0d5f31b7afeef9ff1fe7334c26337514017 Mon Sep 17 00:00:00 2001 From: Jonathan Spira Date: Sun, 17 Sep 2023 14:05:50 -0400 Subject: [PATCH] simplifying testing: - clippy runs on stable - testing runs on msrv only --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 002ab6918..66ff752eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,11 +19,6 @@ jobs: name: Run linter runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' - - strategy: - matrix: - rust: ["1.70"] - env: RUSTFLAGS: -D warnings RUSTDOCFLAGS: -D warnings @@ -33,7 +28,6 @@ jobs: - uses: hecrj/setup-rust-action@v1 with: components: clippy - rust-version: ${{ matrix.rust }} - name: Cache cargo directories uses: actions/cache@v2 with: @@ -80,7 +74,6 @@ jobs: fail-fast: false matrix: rust: - - stable - "1.70" os: - ubuntu-latest