Skip to content

Commit

Permalink
Merge pull request #5 from chrysanthos/bugfix/fix-test-pipeline
Browse files Browse the repository at this point in the history
Update dependencies and fix test pipeline
  • Loading branch information
chrysanthos committed Oct 8, 2023
2 parents ea7db73 + c213e08 commit ae12d60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [9.*]
php: [8.1, 8.2]
laravel: [10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

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

Expand Down Expand Up @@ -47,4 +47,4 @@ jobs:
run: composer show -D

- name: Execute tests
run: vendor/bin/pest
run: vendor/bin/pest
17 changes: 7 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,19 @@
}
],
"require": {
"php": "^8.1.0|^8.2.0",
"illuminate/contracts": "^9.0|^10.0",
"laravel/framework": "^9.41|^10.0",
"php": "^8.1|^8.2",
"illuminate/contracts": "^10.0",
"spatie/laravel-package-tools": "^1.13.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"nunomaduro/collision": "^7.9",
"nunomaduro/larastan": "^2.0",
"pestphp/pest": "^2.21",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5"
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ae12d60

Please sign in to comment.