Skip to content

Commit

Permalink
ignore platform reqs for php 8.0 (just testing for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
maglnet committed Aug 11, 2021
1 parent f169977 commit 84b33a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ jobs:
composer-${{ runner.os }}-
composer-
- name: "Install dependencies"
if: ${{ matrix.php-version != '8.0' }}
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Install dependencies --ignore-platform-reqs"
if: ${{ matrix.php-version == '8.0' }}
run: "composer update --ignore-platform-reqs --no-interaction --no-progress --no-suggest"

- name: "Tests"
run: "vendor/bin/phpunit -c tests"
Expand Down

0 comments on commit 84b33a4

Please sign in to comment.