Skip to content

Commit

Permalink
added dependency values to the matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Feb 6, 2024
1 parent 55ef25e commit e6d1e00
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/orm2_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ on: ["push", "pull_request"]

jobs:
build:
name: PHP ${{ matrix.php }}
name: PHP ${{ matrix.php }} (${{ matrix.dependency }})

runs-on: ubuntu-latest

strategy:
matrix:
dependency:
- lowest
- highest
php:
- 7.2
- 7.3
Expand All @@ -27,6 +30,6 @@ jobs:

- uses: "ramsey/composer-install@v2"
with:
dependency-versions: "lowest"
dependency-versions: "${{ matrix.dependency }}"

- run: composer run test

0 comments on commit e6d1e00

Please sign in to comment.