Skip to content

Commit

Permalink
remove platform ignore flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Aug 23, 2023
1 parent 1171094 commit 3d6ab7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ jobs:

- name: "Install lowest dependencies"
if: ${{ matrix.dependencies == 'lowest' }}
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest --ignore-platform-req=php"
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"

- name: "Install highest dependencies"
if: ${{ matrix.dependencies == 'highest' }}
run: "composer update --no-interaction --no-progress --no-suggest --ignore-platform-req=php"
run: "composer update --no-interaction --no-progress --no-suggest"

- name: "Install locked dependencies"
if: ${{ matrix.dependencies == 'locked' }}
run: "composer install --no-interaction --no-progress --no-suggest --ignore-platform-req=php"
run: "composer install --no-interaction --no-progress --no-suggest"

- name: Test
run: vendor/bin/pest

0 comments on commit 3d6ab7f

Please sign in to comment.