Skip to content

Commit 3923ea3

Browse files
calling directly composer
1 parent e9a530f commit 3923ea3

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,8 @@ jobs:
2626
path: /tmp/composer-cache
2727
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
2828

29-
- uses: php-actions/composer@v6
30-
with:
31-
progress: yes
32-
php_version: '8.3'
33-
version: 2
29+
- name: Install dependencies
30+
run: composer install
3431

3532
- name: "PHP-CS-Fixer"
3633
run: vendor/bin/php-cs-fixer fix --dry-run

.github/workflows/unit-test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jobs:
2323
with:
2424
path: /tmp/composer-cache
2525
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
26-
- uses: php-actions/composer@v6
27-
with:
28-
progress: yes
29-
php_version: ${{ matrix.php }}
30-
version: 2
26+
- name: Install dependencies
27+
run: composer install
3128
- uses: php-actions/phpunit@v4
3229
with:
3330
configuration: phpunit.xml.dist

0 commit comments

Comments
 (0)