Skip to content

Commit

Permalink
test against lowest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Sep 23, 2023
1 parent ae36cd7 commit c122603
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest]
php-version: ['8.1', '8.2', '8.3']
dependencies: ['lowest', 'highest']
name: 'PHPUnit'
steps:
- name: Checkout
Expand All @@ -21,6 +22,8 @@ jobs:
coverage: xdebug
- name: Composer
uses: "ramsey/composer-install@v2"
with:
dependency-versions: ${{ matrix.dependencies }}
- name: PHPUnit
run: vendor/bin/phpunit --coverage-clover=coverage.clover
- uses: codecov/codecov-action@v1
Expand All @@ -31,6 +34,7 @@ jobs:
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3']
dependencies: ['lowest', 'highest']
name: 'Psalm'
steps:
- name: Checkout
Expand All @@ -42,6 +46,8 @@ jobs:
extensions: mbstring, intl
- name: Composer
uses: "ramsey/composer-install@v2"
with:
dependency-versions: ${{ matrix.dependencies }}
- name: Psalm
run: vendor/bin/psalm --shepherd
cs:
Expand Down

0 comments on commit c122603

Please sign in to comment.