1
0
Fork 0
mirror of https://github.com/archtechx/virtualcolumn.git synced 2025-12-12 09:34:04 +00:00

Use ci.yml from #12

This commit is contained in:
lukinovec 2023-02-15 15:38:20 +01:00
parent 739c30e507
commit f5925e757c

View file

@ -8,8 +8,13 @@ jobs:
strategy: strategy:
fail-fast: true fail-fast: true
matrix: matrix:
laravel: [6, 8, 9, 10]
php: ["7.3", "8.0", "8.1"] 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: exclude:
- laravel: "^10.0" - laravel: "^10.0"
php: "8.0" php: "8.0"
@ -25,7 +30,7 @@ jobs:
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@v2 uses: shivammathur/setup-php@v2
with: with:
php-version: '8.1' php-version: '8.0'
- name: Install dependencies - name: Install dependencies
run: composer require "laravel/framework:^${{matrix.laravel}}.0" run: composer require "laravel/framework:^${{matrix.laravel}}.0"