Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed Nov 23, 2024
1 parent ddc029f commit 35f79f8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ env:

jobs:
tests:
name: Tests / ${{ matrix.version }} PHP, ${{ matrix.stability }}
name: Tests / ${{ matrix.php }} PHP, ${{ matrix.stability }}

runs-on: ubuntu-latest
strategy:
matrix:
version: ['lowest', 'latest']
php: ['lowest', 'latest']
stability: [prefer-lowest, prefer-stable]

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version == 'lowest' && env.PHP_LOWEST || env.PHP_LATEST }}
php-version: ${{ matrix.php == 'lowest' && env.PHP_LOWEST || env.PHP_LATEST }}
coverage: none

- name: Setup Node
Expand Down Expand Up @@ -60,15 +60,15 @@ jobs:
run: vendor/bin/phpunit

types:
name: Types / ${{ matrix.version }} PHP
name: Types / ${{ matrix.php }} PHP

runs-on: ubuntu-latest
strategy:
matrix:
include:
- version: lowest
- php: lowest
stability: prefer-lowest
- version: latest
- php: latest
stability: prefer-stable

steps:
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version == 'lowest' && env.PHP_LOWEST || env.PHP_LATEST }}
php-version: ${{ matrix.php == 'lowest' && env.PHP_LOWEST || env.PHP_LATEST }}
coverage: none

- name: Get Composer cache directory path
Expand Down

0 comments on commit 35f79f8

Please sign in to comment.