Skip to content

feat: add PHPStan max, PHP-CS-Fixer, coverage annotations, maskPatter… #1

feat: add PHPStan max, PHP-CS-Fixer, coverage annotations, maskPatter…

feat: add PHPStan max, PHP-CS-Fixer, coverage annotations, maskPatter… #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
os: [ubuntu-latest]
include:
- php: '8.5'
os: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: gd
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: vendor/bin/phpunit --coverage-clover coverage.xml
- name: Upload coverage
if: matrix.php == '8.3' && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4
with:
file: coverage.xml