Skip to content

Commit

Permalink
Update phpunit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdankharchenko committed Jul 23, 2024
1 parent 44713e8 commit 527d1e0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: Tests

on: [push]
on: [ push ]

jobs:
phpunit:
runs-on: ubuntu-latest

strategy:
matrix:
php: [8.1, 8.3]
laravel: [10, 11]
dependency-version: [lowest, stable]
php: [ 8.1, 8.3 ]
laravel: [ 10, 11 ]
testbench: [ 8, 9 ]
dependency-version: [ lowest, stable ]

name: ${{ matrix.laravel }}.x on ${{ matrix.php }} (${{ matrix.dependency-version }} deps)

Expand All @@ -27,7 +28,7 @@ jobs:

- name: Install dependencies
run: composer update --prefer-${{ matrix.dependency-version }} --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist

- name: Set Laravel version
run: "composer require laravel/framework:^${{ matrix.laravel }}.0 orchestra/testbench:^${{ matrix.testbench }}.0 --update-with-all-dependencies --prefer-${{ matrix.dependency-version }} --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist"

Expand Down

0 comments on commit 527d1e0

Please sign in to comment.