We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7727e commit a676961Copy full SHA for a676961
1 file changed
.github/workflows/tests.yml
@@ -10,7 +10,7 @@ jobs:
10
strategy:
11
fail-fast: false
12
matrix:
13
- php: [8.0, 8.1, 8.2]
+ php: [8.0, 8.1, 8.2, 8.3]
14
experimental: [false]
15
include:
16
- php: 8.2
@@ -26,7 +26,12 @@ jobs:
26
php-version: ${{ matrix.php }}
27
coverage: xdebug
28
29
- - name: Install dependencies with Composer
+ - name: Install dependencies with Composer (PHP 8.0)
30
+ if: ${{ matrix.php == 8.0 }}
31
+ run: rm composer.lock && composer update
32
+
33
+ - name: Install dependencies with Composer (PHP 8.1+)
34
+ if: ${{ matrix.php >= 8.1 }}
35
uses: ramsey/composer-install@v2
36
37
- name: Coding standards
0 commit comments