Skip to content

Commit

Permalink
Do not test on php 8.0 anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Sep 25, 2024
1 parent b342cda commit 51781dc
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions .github/workflows/quality-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,24 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1' ]
php: [ '8.1', '8.2', '8.3', '8.4' ]
composer-flags: [ '' ]
experimental: [false]
phpstan: [true]
phpunit-flags: [ '--coverage-text' ]
include:
- php: '8.0'
composer-flags: '--prefer-lowest'
experimental: false
phpstan: false
phpunit-flags: '--no-coverage'
- php: '8.2'
experimental: false
phpstan: false
phpunit-flags: '--no-coverage'
- php: '8.3'
experimental: false
phpstan: false
phpunit-flags: '--no-coverage'
- php: '8.4'
experimental: true
phpstan: false
phpunit-flags: '--no-coverage'
# include:
# - php: '8.2'
# experimental: false
# phpstan: false
# phpunit-flags: '--no-coverage'
# - php: '8.3'
# experimental: false
# phpstan: false
# phpunit-flags: '--no-coverage'
# - php: '8.4'
# experimental: true
# phpstan: false
# phpunit-flags: '--no-coverage'
steps:
- uses: actions/checkout@v4
- run: docker compose -f docker-compose.yml up -d
Expand Down

0 comments on commit 51781dc

Please sign in to comment.