Skip to content

Commit

Permalink
Disabled Windows platform in CI tests
Browse files Browse the repository at this point in the history
  - Disabled the Windows platform in CI build and tests - forgot that
    Patchify is not Windows-compatible yet.
  • Loading branch information
danwilliams committed Nov 10, 2024
1 parent 141c55a commit 390eb97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 390eb97

Please sign in to comment.