Skip to content

Commit

Permalink
try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrik Foldes committed Nov 6, 2024
1 parent d5d8039 commit 70d8c5f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
dependencies:
- "lowest"
- "highest"
- "locked"
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"
- "windows-latest"
Expand All @@ -34,14 +34,12 @@ jobs:
- name: "Install lowest dependencies"
uses: "ramsey/composer-install@v3"
if: ${{ matrix.dependencies == 'lowest' }}
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
with:
composer-options: "--prefer-lowest --no-interaction --no-progress --no-suggest"
- name: "Install highest dependencies"
uses: "ramsey/composer-install@v3"
if: ${{ matrix.dependencies == 'highest' }}
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Install locked dependencies"
uses: "ramsey/composer-install@v3"
if: ${{ matrix.dependencies == 'locked' }}
run: "composer install --no-interaction --no-progress --no-suggest"
with:
composer-options: "--no-interaction --no-progress --no-suggest"
- name: "Tests"
run: "vendor/bin/phpunit --fail-on-warning"

0 comments on commit 70d8c5f

Please sign in to comment.