mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 15:34:04 +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
18
.github/workflows/ci.yml
vendored
18
.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 }}
|
||||||
|
|
@ -42,4 +52,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
author_name: Samuel Štancl
|
author_name: Samuel Štancl
|
||||||
author_email: samuel.stancl@gmail.com
|
author_email: samuel.stancl@gmail.com
|
||||||
message: Fix code style (php-cs-fixer)
|
message: Fix code style (php-cs-fixer)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue