From 390eb97cd3d6e34f3ee60d51fd74cb8a1e0b939b Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Sun, 10 Nov 2024 14:38:30 +0000 Subject: [PATCH] Disabled Windows platform in CI tests - Disabled the Windows platform in CI build and tests - forgot that Patchify is not Windows-compatible yet. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14b3892..cf8d973 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: name: Basic checks strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ ubuntu-latest, macos-latest ] # windows-latest is not supported runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: name: Feature combination checks strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ ubuntu-latest, macos-latest ] # windows-latest is not supported runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4