Skip to content

Commit

Permalink
Remove matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mads Jon Nielsen committed Mar 15, 2024
1 parent cd77c64 commit ce1a7f6
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/quality-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,20 @@ jobs:

phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [7.4, 8.0, 8.1, 8.2]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
php-version: 8.3
- run: composer install
- run: ./vendor/bin/phpunit

php-cs-fixer:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [7.4, 8.0, 8.1]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
php-version: 8.3
- run: composer install
- run: ./vendor/bin/php-cs-fixer fix --dry-run

0 comments on commit ce1a7f6

Please sign in to comment.