mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 19:54:03 +00:00
Update GitHub Actions for Laravel 10
This commit is contained in:
parent
683fc7f785
commit
e043d0114c
1 changed files with 14 additions and 4 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
|
@ -3,12 +3,22 @@ name: run-tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
|
||||||
matrix:
|
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: "^9.0"
|
||||||
|
php: "7.3"
|
||||||
|
|
||||||
|
|
||||||
name: Tests (PHPUnit) - L${{ matrix.laravel }}
|
name: Tests (PHPUnit) - L${{ matrix.laravel }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue