We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d10b205 commit d105904Copy full SHA for d105904
1 file changed
.github/workflows/phpunit.yml
@@ -9,8 +9,9 @@ jobs:
9
fail-fast: true
10
matrix:
11
php: [ "7.2", "7.3", "7.4", "8.0" ]
12
+ support: [ "2.0", "3.0" ]
13
- name: PHP ${{ matrix.php }}
14
+ name: PHP ${{ matrix.php }}, Support ${{ matrix.support }}
15
16
steps:
17
- name: Checkout code
@@ -27,7 +28,9 @@ jobs:
27
28
run: composer self-update
29
30
- name: Install dependencies
- run: composer update --prefer-stable --prefer-dist --no-progress --no-interaction
31
+ run: |
32
+ composer require andrey-helldar/support:^${{ matrix.support }}
33
+ composer update --prefer-stable --prefer-dist --no-progress --no-interaction
34
35
- name: Execute tests
36
run: sudo vendor/bin/phpunit
0 commit comments