Skip to content

Commit

Permalink
some composer and github action fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ziming committed Mar 31, 2024
1 parent b706d32 commit 2989201
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.1, 8.2]
laravel: [10.*]
php: [8.2]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0


name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ vendor
node_modules
.php-cs-fixer.cache
phpunit.xml.dist.bak
.phpunit.cache
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"require-dev": {
"nunomaduro/collision": "^6.3||^7.0||^8.1.1",
"orchestra/testbench": "^7.7||^8.0||^9.0.0",
"orchestra/testbench": "^7.7||^8.0||^9.0",
"phpunit/phpunit": "^9.5.24||^10.0||^11.0",
"rector/rector": "^1.0",
"spatie/laravel-ray": "^1.30",
Expand All @@ -40,7 +40,7 @@
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test": "./vendor/bin/testbench package:test --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
Expand Down

0 comments on commit 2989201

Please sign in to comment.