Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@ jobs:
name: Output PHP version for Symfony CLI
run: php -v | head -n 1 | awk '{ print $2 }' > .php-version

-
name: Install certificates
run: symfony server:ca:install

-
name: Get Composer cache directory
id: composer-cache
Expand Down Expand Up @@ -187,9 +183,13 @@ jobs:
vendor/bin/console doctrine:database:create -vvv
vendor/bin/console doctrine:migrations:migrate -n -vvv -q

-
name: Setup messenger transports
run: vendor/bin/console messenger:setup-transports -vvv

-
name: Validate database schema
run: vendor/bin/console doctrine:schema:validate
run: vendor/bin/console doctrine:schema:validate -vvv

-
name: Prepare test application assets
Expand Down
2 changes: 1 addition & 1 deletion behat.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ default:

Behat\MinkExtension:
files_path: "%paths.base%/vendor/sylius/sylius/src/Sylius/Behat/Resources/fixtures/"
base_url: "https://127.0.0.1:8080/"
base_url: "http://127.0.0.1:8080/"
default_session: symfony
javascript_session: chrome
sessions:
Expand Down