PHP73 adjustments #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: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '7.3', '7.4', '8.0' ] | |
steps: | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: setup_php | |
name: Set up PHP version ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- id: composer-cache-vars | |
name: Composer Cache Vars | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
echo "timestamp=$(date +"%s")" >> $GITHUB_OUTPUT | |
- id: composer-cache-dependencies | |
name: Cache Composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache-vars.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ steps.composer-cache-vars.outputs.timestamp }} | |
restore-keys: | | |
${{ runner.os }}-composer-${{ matrix.php }}- | |
${{ runner.os }}-composer- | |
- id: install | |
name: Install dependencies | |
run: | | |
composer validate | |
composer install --no-progress | |
- id: lint | |
name: Lint | |
if: ${{ always() && steps.install.conclusion == 'success' }} | |
run: | | |
composer ci:test:php:lint | |
- id: cgl | |
name: CGL | |
if: ${{ always() && steps.install.conclusion == 'success' }} | |
run: | | |
composer ci:cgl -- --dry-run | |
- id: phpstan | |
name: PHPStan | |
if: ${{ always() && steps.install.conclusion == 'success' }} | |
run: | | |
composer ci:test:php:phpstan -- --error-format=github | |
- id: rector | |
name: Rector | |
if: ${{ always() && steps.install.conclusion == 'success' }} | |
run: | | |
composer ci:test:php:rector | |
- id: tests_unit | |
name: Unit Tests | |
if: ${{ always() && steps.install.conclusion == 'success' }} | |
run: | | |
composer ci:test:php:unit |