From 6424bf74594d0884e30660451b2fe32d586bc35f Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Sun, 11 Oct 2020 20:20:33 +0200 Subject: [PATCH] Remove step names --- .github/workflows/ci.yml | 45 +++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b068c6c..0052127 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,31 +9,28 @@ jobs: strategy: matrix: php: [7.2, 7.3, 7.4, 8.0] - extension: [':bcmath', ':gmp'] + extension: [":bcmath", ":gmp"] name: PHP ${{ matrix.php }} steps: - - uses: actions/checkout@v2 - - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - coverage: xdebug - extensions: ${{ matrix.extension }} - tools: composer:v2 - - name: Install PHP 8 Dependencies - uses: nick-invision/retry@v1 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --no-interaction --no-progress --ignore-platform-req=php - if: "matrix.php >= 8" - - name: Install PHP 7 Dependencies - uses: nick-invision/retry@v1 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --no-interaction --prefer-dist --no-progress - if: "matrix.php < 8" - - run: vendor/bin/phpunit --coverage-text - + - uses: actions/checkout@v2 + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: xdebug + extensions: ${{ matrix.extension }} + tools: composer:v2 + - uses: nick-invision/retry@v1 + with: + timeout_minutes: 5 + max_attempts: 5 + command: composer update --no-interaction --no-progress --ignore-platform-req=php + if: "matrix.php >= 8" + - uses: nick-invision/retry@v1 + with: + timeout_minutes: 5 + max_attempts: 5 + command: composer update --no-interaction --prefer-dist --no-progress + if: "matrix.php < 8" + - run: vendor/bin/phpunit --coverage-text