Skip to content

Commit

Permalink
remove windows from github actions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreLebedel committed Oct 31, 2024
1 parent 4c649c9 commit 81810f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
stability: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: P${{ matrix.php }} - ${{ matrix.stability }}

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion tests/ReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'test 2.2',
]);

})->only();
});

it('can read vcard fullname from name parts', function () {

Expand Down

0 comments on commit 81810f6

Please sign in to comment.