Skip to content

PHP linting

PHP linting #51

Workflow file for this run

name: validation
on:
- push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest' ]
php-version: [ '8.3', '8.4' ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Prepare
run: composer install
- name: Lint
run: make lint
- name: Test
run: make test
- name: Coverage
run: make coverage-text