Skip to content

Commit

Permalink
ci: generate coverage on lowest and highest deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Dec 21, 2022
1 parent 261173e commit a71f743
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -101,6 +101,11 @@ jobs:
needs: ["coding-standards", "static-analysis"]
runs-on: "ubuntu-latest"

strategy:
fail-fast: false
matrix:
composer-deps: [ "lowest", "highest" ]

steps:
- name: "Checkout repository"
uses: "actions/checkout@v3.2.0"
Expand All @@ -115,6 +120,8 @@ jobs:

- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@2.2.0"
with:
dependency-versions: "${{ matrix.composer-deps }}"

- name: "Run unit tests (PHPUnit)"
run: "composer dev:test:coverage:ci"
Expand Down

0 comments on commit a71f743

Please sign in to comment.