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

Use single PHP version in CI

This commit is contained in:
lukinovec 2023-02-16 09:06:26 +01:00
parent c97849ccb2
commit 02603426a6

View file

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