Merge pull request #23 from stof/update_ci #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check_composer: | |
name: Check composer.json | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.3' | |
- run: composer validate --strict --no-check-lock | |
static_analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.3' | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction | |
- run: vendor/bin/phpstan analyze | |
tests: | |
name: "Tests on PHP ${{ matrix.php }}${{ matrix.name_suffix }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ] | |
min_stability: [ '' ] | |
name_suffix: [ '' ] | |
composer_flags: [ '' ] | |
include: | |
- php: '8.3' | |
min_stability: 'dev' | |
name_suffix: ' (dev deps)' | |
- php: '7.4' | |
min_stability: '' | |
name_suffix: ' (lowest deps)' | |
composer_flags: '--prefer-lowest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php }}" | |
ini-file: development | |
- name: Configure stability | |
if: "matrix.min_stability != ''" | |
run: composer config minimum-stability "${{ matrix.min_stability }}" | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction ${{ matrix.composer_flags }} | |
- name: Run tests | |
run: vendor/bin/phpunit -v --colors=always |