Skip to content
This repository has been archived by the owner on Dec 22, 2020. It is now read-only.

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Nov 25, 2020
1 parent b7c641f commit 0cdcd85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- '7.2'
- '7.3'
- '7.4'
- 'rc'
- '8.0'
- '8.1'
symfony:
- '3.4.*'
- '4.4.*'
Expand Down Expand Up @@ -65,11 +66,11 @@ jobs:

- name: Update project dependencies
if: matrix.dependency == ''
run: composer update --no-progress --ansi --prefer-stable
run: composer update --no-progress --ansi --prefer-stable --ignore-platform-req=php

- name: Update project dependencies lowest
if: matrix.dependency == 'lowest'
run: composer update --no-progress --ansi --prefer-lowest --prefer-stable
run: composer update --no-progress --ansi --prefer-lowest --prefer-stable --ignore-platform-req=php

- name: Disable deprecations notices for lowest dependencies
if: matrix.dependency == 'lowest'
Expand All @@ -86,7 +87,7 @@ jobs:
composer req --ignore-platform-reqs tilleuls/migration-bundle
- name: Run php-cs-fixer tests
if: matrix.php != 'rc'
if: matrix.php != '8.0' && matrix.php != '8.1'
run: php-cs-fixer fix --diff --dry-run

- name: Run PHPUnit tests
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.2",
"php": ">=7.2",
"doctrine/annotations": "^1.2",
"doctrine/dbal": "^2.5",
"doctrine/doctrine-bundle": "^1.7.2 || ^2.0",
Expand Down

0 comments on commit 0cdcd85

Please sign in to comment.