Skip to content

Commit

Permalink
Don't test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Apr 9, 2024
1 parent 2a5d584 commit 6accc62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ jobs:
unitTests:
strategy:
matrix:
operatingSystem: [ubuntu-latest, windows-latest]
phpVersion: ['8.1', '8.2', '8.3']
fail-fast: false

runs-on: ${{ matrix.operatingSystem }}
name: ${{ matrix.operatingSystem }} / PHP ${{ matrix.phpVersion }}
runs-on: ubuntu-latest
name: PHP ${{ matrix.phpVersion }}
env:
extensions: curl, fileinfo, openssl, zip
key: winter-packager-v1

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.operatingSystem }}-${{ matrix.phpVersion }}
group: ${{ github.workflow }}-${{ github.ref }}-phpunit-${{ matrix.phpVersion }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
Expand Down

0 comments on commit 6accc62

Please sign in to comment.