Skip to content

Commit

Permalink
Try to fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Sep 23, 2024
1 parent 72116f0 commit 335e04e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
symfony:
- "~5.4.0"
- "~6.4.0"

steps:
- name: "Start MySQL"
run: "sudo /etc/init.d/mysql start"
Expand All @@ -236,6 +236,14 @@ jobs:
SYMFONY_REQUIRE: "${{ matrix.symfony }}"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install symfony/swiftmailer-bundle if applicable"
if: "${{ matrix.symfony }} == '~5.4.0'"
run: "composer require symfony/swiftmailer-bundle"

- name: "Install symfony/mailer if applicable"
if: "${{ matrix.symfony }} == '~6.4.0'"
run: "composer require symfony/mailer"

- name: "Lint container"
run: "(cd tests/Application && bin/console lint:container)"
Expand Down

0 comments on commit 335e04e

Please sign in to comment.