Skip to content

Commit

Permalink
Remove step names
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Oct 11, 2020
1 parent e188aca commit 6424bf7
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6424bf7

Please sign in to comment.