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

Use multiple PHP versions

This commit is contained in:
lukinovec 2023-02-15 16:02:51 +01:00
parent c84330eb8f
commit f5eeb2337a

View file

@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
laravel: [6, 8, 9, 10]
php-versions: ['8.0', '8.1']
name: Tests (PHPUnit) - L${{ matrix.laravel }}
@ -20,7 +20,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer require "laravel/framework:^${{matrix.laravel}}.0"