Skip to content

Commit 7882bd6

Browse files
committed
Fixing condition php
1 parent d68833e commit 7882bd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
- name: Install Composer Dependencies
4040
run: composer update --no-interaction --no-progress --ansi
41-
if: ${{ matrix.php-version == '^8.0' }}
41+
if: ${{ matrix.php-version == '8.0' }}
4242

4343
- name: Install Composer Dependencies
4444
run: composer update --no-interaction --no-progress --ansi --ignore-platform-req=php
45-
if: ${{ matrix.php-version == '^8.1' }}
45+
if: ${{ matrix.php-version == '8.1' }}
4646

4747
- name: Running PHPUnit
4848
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)