Skip to content

Commit

Permalink
cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
dcarbone committed Apr 12, 2024
1 parent 093dfd3 commit 4682225
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
fhir-version: ['DSTU1', 'DSTU2', 'STU3', 'R4']
include:
- php-version: '8.1'
phpunit-version: '^10.5'
paratest-version: '^6'
phpunit-version: '10.5'
paratest-version: '7'
- php-version: '8.2'
phpunit-version: '^11.1'
paratest-version: '^7'
phpunit-version: '11.1'
paratest-version: '7'
- php-version: '8.3'
phpunit-version: '^11.1'
paratest-version: '^7'
phpunit-version: '11.1'
paratest-version: '7'
name: ${{ matrix.fhir-version }} - PHP ${{ matrix.php-version }} - PHPUnit ${{ matrix.phpunit-version }}
steps:
- uses: actions/checkout@v4
Expand All @@ -60,7 +60,7 @@ jobs:
- name: 'Set Composer Dep Versions'
run: |
tmpf="$(mktemp)"
jq -rcM '."require-dev"."phpunit/phpunit" = "${{ matrix.phpunit-version }}" | ."require-dev"."brianium/paratest" = "${{ matrix.paratest-version }}"' composer.json > "${tmpf}"
jq -rcM '."require-dev"."phpunit/phpunit" = "^${{ matrix.phpunit-version }}" | ."require-dev"."brianium/paratest" = "^${{ matrix.paratest-version }}"' composer.json > "${tmpf}"
mv "${tmpf}" composer.json
- name: 'Get Composer Cache Directory'
Expand Down

0 comments on commit 4682225

Please sign in to comment.