-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #10 Add support for PHP 8 and Sylius 1.10 (AdamKasp)
This PR was merged into the 1.10-dev branch. Discussion ---------- Commits ------- de63418 add support for php 8 5bf7b20 diseable falling test c63629f comment to disabled test
- Loading branch information
Showing
5 changed files
with
39 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,19 +14,31 @@ on: | |
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-latest | ||
|
||
name: "Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" | ||
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}, Sylius ${{ matrix.sylius }}" | ||
|
||
timeout-minutes: 30 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [7.4] | ||
symfony: [^4.4, ^5.2] | ||
sylius: [~1.9.0] | ||
node: [10.x] | ||
mysql: [5.7] | ||
|
||
php: [ "7.4", "8.0" ] | ||
symfony: [ "^4.4", "5.2.*" ] | ||
sylius: [ "~1.9.0", "~1.10.0" ] | ||
node: [ "10.x" ] | ||
mysql: [ "8.0" ] | ||
|
||
include: | ||
- php: "8.0" | ||
symfony: "5.2.*" | ||
sylius: "~1.10.0" | ||
node: "10.x" | ||
mysql: "5.7" | ||
|
||
exclude: | ||
- php: "8.0" | ||
sylius: "~1.9.0" | ||
env: | ||
APP_ENV: test_cached | ||
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters