From 2531d3029806d038c41ad1b2d85b8ee2619b83fc Mon Sep 17 00:00:00 2001 From: Solomon Jacobs Date: Tue, 7 Nov 2023 12:20:46 +0100 Subject: [PATCH] Remove dead action The `./ci "${STEP}"` step was never executed, thus the Windows setup is covered by ci to begin with. --- .github/workflows/ci.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 790827e9..a7093d48 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,34 +28,11 @@ jobs: STEP: ${{ matrix.step }} run: ./ci "${STEP}" - windows: - runs-on: windows-latest - - strategy: - matrix: - include: - - name: Rust formatting - step: cargo-fmt-check - - name: Rust linting - step: cargo-clippy - - name: Rust tests - step: cargo-test - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: "Setup Rust" - uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - with: - components: rustfmt, clippy - check_success: if: always() needs: - linux - - windows runs-on: ubuntu-latest