Skip to content

Commit 19cd5bf

Browse files
author
Artem Stepin
committed
ci test
1 parent ebf18ba commit 19cd5bf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ jobs:
99
matrix:
1010
php-versions: ['7.4', '8.0']
1111
composer-args: ['--prefer-stable', '--prefer-lowest']
12+
composer-command: ['install', 'update']
13+
exclude:
14+
- composer-args: '--prefer-stable'
15+
composer-command: 'install'
16+
- composer-args: '--prefer-lowest'
17+
composer-command: 'install'
1218

1319
steps:
1420
- uses: actions/checkout@v2
1521
- uses: php-actions/composer@v5
1622
with:
1723
php_version: ${{ matrix.php-versions }}
24+
command: ${{ matrix.composer-command }}
1825
args: ${{ matrix.composer-args }}
1926
- name: PHPUnit tests
2027
uses: php-actions/phpunit@v3

0 commit comments

Comments
 (0)