php 8.4 support (#28) #41
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 | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.2'] | |
stability: [ prefer-stable ] | |
include: | |
- php: '8.2' | |
stability: prefer-stable | |
- php: '8.3' | |
stability: prefer-stable | |
- php: '8.4' | |
stability: prefer-stable | |
name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} - ${{ matrix.stability }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache dependencies | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
# use PHP of specific version | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer install --prefer-dist --no-progress | |
- name: Execute tests | |
run: composer phpunit | |
cs-and-rector: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
- name: Cache dependencies | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: dependencies-php-8.3-composer-${{ hashFiles('composer.json') }} | |
- run: | | |
composer install --prefer-dist --no-progress | |
composer cs-fix | |
composer rector-fix | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply CS/Rector changes | |
phpstan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
- name: Cache dependencies | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: dependencies-php-8.3-composer-${{ hashFiles('composer.json') }} | |
- run: composer install --prefer-dist --no-progress | |
- run: composer phpstan |