Skip to content

Commit

Permalink
Update Tests.yml to also run tests vs older php versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tlayh authored Mar 21, 2024
1 parent 2a5e564 commit 489a003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
composer code-check-pipeline
- name: Unit Tests without coverage
if: matrix.typo3 != '^11.5' && matrix.php != '8.3'
if: matrix.typo3 != '^11.5' || matrix.php != '8.3'
run: composer test:unit

- name: Unit Tests with coverage
Expand All @@ -62,7 +62,7 @@ jobs:
.Build/bin/phpunit --coverage-filter Classes --coverage-clover=coverage/unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit
- name: Functional Tests without coverage
if: matrix.typo3 != '^11.5' && matrix.php != '8.3'
if: matrix.typo3 != '^11.5' || matrix.php != '8.3'
run: composer test:functional

- name: Tests with coverage
Expand Down

0 comments on commit 489a003

Please sign in to comment.