Hide command progress bars in CI job output

This commit is contained in:
Tim Bond 2024-02-19 00:58:49 +01:00 committed by Ivan Fedorov
parent f98f62e8fc
commit 4bec2af84a
1 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ jobs:
PHP_VERSION: ${{matrix.php}}
- name: Composer Install
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner composer install
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner composer install --no-progress
env:
PHP_VERSION: ${{matrix.php}}
@ -30,7 +30,7 @@ jobs:
PHP_VERSION: ${{matrix.php}}
- name: Run Tests
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner vendor/bin/phpunit --testsuite PHP_${{matrix.php}}
run: docker-compose -f docker-compose.yml run -e PHP_VERSION=${{matrix.php}} test_runner vendor/bin/phpunit --no-progress --testsuite PHP_${{matrix.php}}
env:
PHP_VERSION: ${{matrix.php}}
additional:
@ -41,13 +41,13 @@ jobs:
uses: actions/checkout@v4
- name: Composer Install
run: docker-compose -f docker-compose.yml run test_runner composer install
run: docker-compose -f docker-compose.yml run test_runner composer install --no-progress
- name: Test PhpDoc
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --testsuite PhpDoc
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite PhpDoc
- name: Test Stubs Map, Structure and Reflection
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --testsuite Structure
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --no-progress --testsuite Structure
- name: run cs fixer
run: docker-compose -f docker-compose.yml run test_runner composer cs
run: docker-compose -f docker-compose.yml run test_runner composer cs -- --show-progress=none