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 a94deef commit 066ef1b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/browser-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
phpunit: [10.5, '11.0']
phpunit: [10.5, 11]
include:
- php: 8.4
laravel: 11
Expand All @@ -29,7 +29,7 @@ jobs:
- php: 8.1
laravel: 11
- laravel: 10
phpunit: '11.0'
phpunit: 11

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - PHPUnit ${{ matrix.phpunit }}

Expand Down Expand Up @@ -60,6 +60,6 @@ jobs:
run: php vendor/bin/testbench serve --no-reload &

- name: Execute tests
run: php vendor/bin/phpunit -c phpunit.dusk.xml.dist --fail-on-deprecation --display-deprecations
run: php vendor/bin/phpunit -c phpunit.dusk.xml.dist --display-deprecations --fail-on-deprecation
env:
APP_URL: http://127.0.0.1:8000
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
phpunit: [10.5, '11.0']
phpunit: [10.5, 11]
include:
- php: 8.4
laravel: 11
Expand All @@ -29,7 +29,7 @@ jobs:
- php: 8.1
laravel: 11
- laravel: 10
phpunit: '11.0'
phpunit: 11

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - PHPUnit ${{ matrix.phpunit }}

Expand All @@ -48,18 +48,18 @@ jobs:

- name: Install dependencies
run: |
composer update --with=laravel/framework:^${{ matrix.laravel }} --with=phpunit/phpunit:^${{ matrix.phpunit }} --prefer-dist --no-interaction --no-progress
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}" --with="phpunit/phpunit:^${{ matrix.phpunit }}"
- name: Execute tests
run: vendor/bin/phpunit -c phpunit.xml.dist --fail-on-deprecation --display-deprecations
run: vendor/bin/phpunit -c phpunit.xml.dist --display-deprecations --fail-on-deprecation

stub-tests:
runs-on: ubuntu-22.04

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
php: [8.2, 8.3, 8.4]
laravel: [10, 11]

name: Test Stubs PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
Expand Down

0 comments on commit 066ef1b

Please sign in to comment.