mirror of
https://github.com/archtechx/jobpipeline.git
synced 2025-12-12 20:54:04 +00:00
Update GitHub Actions for Laravel 10
This commit is contained in:
parent
4119794204
commit
33c2c9de36
1 changed files with 15 additions and 2 deletions
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
|
|
@ -8,7 +8,20 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
laravel: [6, 8, 9]
|
||||
php: ["7.3", "8.0", "8.1"]
|
||||
laravel: ["^6.0", "^8.0", "^9.0", "^10.0"]
|
||||
include:
|
||||
- laravel: "^9.0"
|
||||
testbench: "^7.0"
|
||||
- laravel: "^10.0"
|
||||
testbench: "^8.0"
|
||||
exclude:
|
||||
- laravel: "^10.0"
|
||||
php: "8.0"
|
||||
- laravel: "^10.0"
|
||||
php: "7.3"
|
||||
- laravel: "^9.0"
|
||||
php: "7.3"
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
@ -17,7 +30,7 @@ jobs:
|
|||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: '8.0'
|
||||
php-version: ${{matrix.php}}
|
||||
|
||||
- name: Start Redis
|
||||
uses: supercharge/redis-github-action@1.1.0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue