Skip to content

Commit 084c173

Browse files
committed
action
1 parent 8c22673 commit 084c173

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/php.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ jobs:
2727
${{ runner.os }}-php-
2828
2929
- name: Install dependencies
30-
run: composer install --prefer-dist --no-progress
30+
uses: php-actions/composer@v6
31+
with:
32+
command: install --prefer-dist --no-progress
3133

3234
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
3335
# Docs: https://getcomposer.org/doc/articles/scripts.md
3436

3537
- name: Run test suite
36-
run: composer run-script test
38+
uses: php-actions/composer@v6
39+
with:
40+
command: run-script test

0 commit comments

Comments
 (0)