Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone authored Nov 13, 2024
1 parent 7094deb commit 9304bba
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- 'test-improvements'
- '*.x'
pull_request:
schedule:
Expand All @@ -24,7 +23,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3, 8.4]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10, 11]
include:
- php: '8.0'
Expand All @@ -33,9 +32,9 @@ jobs:
laravel: 9
- php: 8.2
laravel: 9
- php: 8.1
laravel: 10
exclude:
- php: 8.1
laravel: 11
- php: 8.4
laravel: 10

Expand All @@ -58,5 +57,10 @@ jobs:
run: |
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts:^${{ matrix.laravel }}"
- name: Execute tests (display deprecations)
run: vendor/bin/phpunit --display-deprecations --fail-on-deprecations
if: matrix.laravel >= 10

- name: Execute tests
run: vendor/bin/phpunit
if: matrix.laravel < 10

0 comments on commit 9304bba

Please sign in to comment.