Skip to content

Commit f13f29d

Browse files
authored
Change symfony version constraint in CI
1 parent e1d5cad commit f13f29d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
php: [8.0, 8.1]
12-
symfony: [4.4, 5.4]
12+
symfony: ["4.4.*", "5.4.*"]
1313

1414
steps:
1515
- name: Checkout code
@@ -24,15 +24,15 @@ jobs:
2424
coverage: none
2525

2626
- name: Checkout Symfony 4.4 Sample
27-
if: matrix.symfony == 4.4
27+
if: matrix.symfony == "4.4.*"
2828
uses: actions/checkout@v2
2929
with:
3030
repository: Codeception/symfony-module-tests
3131
path: framework-tests
3232
ref: 4.4_codecept5
3333

3434
- name: Checkout Symfony 5.4 Sample
35-
if: matrix.symfony == 5.4
35+
if: matrix.symfony == "5.4.*"
3636
uses: actions/checkout@v2
3737
with:
3838
repository: Codeception/symfony-module-tests
@@ -83,4 +83,4 @@ jobs:
8383
- name: Run test suite
8484
run: |
8585
php vendor/bin/codecept build -c framework-tests
86-
php vendor/bin/codecept run Functional -c framework-tests
86+
php vendor/bin/codecept run Functional -c framework-tests

0 commit comments

Comments
 (0)