Skip to content

Commit

Permalink
OP-514 - build.yml has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkalon committed Sep 9, 2024
1 parent 113eb99 commit e516516
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
matrix:
php: [ "8.0", "8.1", "8.2", "8.3" ]
symfony: [ "^5.4", "^6.0" ]
sylius: [ "^1.12", "^1.13" ]
sylius: [ "~1.12.0", "~1.13.0" ]
node: [ "18.x", "20.x" ]
mysql: [ "8.0" ]

exclude:
- sylius: ^1.13
php: 8.0
- sylius: ^1.12
php: 8.0
symfony: ^6.4
- sylius: "~1.13.0"
php: "8.0"
- sylius: "~1.12.0"
php: "8.0"
symfony: "^6.4"

env:
APP_ENV: test
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
run: vendor/bin/behat --colors --strict -vvv --no-interaction || vendor/bin/behat --colors --strict -vvv --no-interaction --rerun

- name: Upload Behat logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: Behat logs
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.0",
"sylius/sylius": "^1.12 || ^1.13"
"sylius/sylius": "~1.12.0 || ~1.13.0"
},
"require-dev": {
"behat/behat": "^3.7",
Expand Down Expand Up @@ -39,7 +39,8 @@
"vimeo/psalm": "4.27"
},
"conflict": {
"behat/mink-selenium2-driver": ">=1.7.0"
"behat/mink-selenium2-driver": ">=1.7.0",
"doctrine/persistence": "<3.0"
},
"config": {
"sort-packages": true,
Expand Down

0 comments on commit e516516

Please sign in to comment.