Skip to content

Commit e36aa17

Browse files
🧪 fix test workflow configuration (#3539)
* 🧪 fix test workflow configuration * remove Symfony cli version for install the latest version
1 parent e3e546c commit e36aa17

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/a11y_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
php-version: ${{ matrix.php-version }}
3737
extensions: json, mbstring, pdo, curl, pdo_sqlite
3838
coverage: none
39-
tools: symfony-cli:5
39+
tools: symfony-cli
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
- name: Install composer dependencies

.github/workflows/api_tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
php-version: ${{ matrix.php-version }}
1919
extensions: json, mbstring, pdo, curl, pdo_sqlite
2020
coverage: none
21-
tools: symfony-cli:5
22-
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
tools: symfony-cli
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
- name: Install composer dependencies
2525
run: composer install --prefer-dist --no-progress
2626
- name: Initialise the database

.github/workflows/code_analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
php-version: ${{ matrix.php-version }}
5555
extensions: json, mbstring, pdo, curl, pdo_sqlite
5656
coverage: none
57-
tools: symfony-cli:5
57+
tools: symfony-cli
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060

.github/workflows/cypress_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
php-version: 8.2
2626
extensions: json, mbstring, pdo, curl, pdo_sqlite
2727
coverage: none
28-
tools: symfony-cli:5
28+
tools: symfony-cli
2929
# Configure PHP to disable Session garbage collector and fix the timezone to UTC like Bolt use to compare date.
3030
ini-values: session.gc_probability=0, date.timezone=UTC
3131
env:

.github/workflows/unit_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
php-version: ${{ matrix.php-version }}
2020
extensions: json, mbstring, pdo, curl, pdo_sqlite
2121
coverage: none
22-
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
- name: Install composer dependencies
2525
run: composer install --prefer-dist --no-progress
2626
- name: run PHP Unit

0 commit comments

Comments
 (0)