From eefa04f13fc2470be6cba1a01fd4cc0b3aa39e74 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 18 Oct 2023 10:56:45 -0400 Subject: [PATCH] Simplify CI pipeline for now (#118) Removes Windows at least, to avoid unneeded builds. --- .github/workflows/ci.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9764c24d2..aed47654f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: cargo-test: strategy: matrix: - os: [ ubuntu-latest, windows-latest ] + os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} name: "cargo test | ${{ matrix.os }}" steps: @@ -57,10 +57,3 @@ jobs: - name: "Tests (Ubuntu)" if: ${{ matrix.os == 'ubuntu-latest' }} run: cargo insta test --all --all-features --unreferenced reject - - name: "Tests (Windows)" - if: ${{ matrix.os == 'windows-latest' }} - shell: bash - run: cargo insta test --all --all-features --unreferenced reject - - run: cargo doc --all --no-deps - env: - RUSTDOCFLAGS: "-D warnings"