Skip to content

Commit

Permalink
Re-introduce prefer-lowest checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrieghe committed May 10, 2022
1 parent a0bac15 commit 7d1b0f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ jobs:

phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
prefer-lowest: [ '', '--prefer-lowest' ]
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@master
with:
php-version: '8.1'
- name: Install dependencies
run: composer update -n --prefer-dist
run: composer update -n --prefer-dist ${{ matrix.prefer-lowest }}
- name: Run PHPUnit unit tests
run: vendor/bin/phpunit

Expand Down

0 comments on commit 7d1b0f6

Please sign in to comment.