Skip to content

Update .gitignore and phpunit.yml #2

Update .gitignore and phpunit.yml

Update .gitignore and phpunit.yml #2

Workflow file for this run

name: PHPUnit
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: pcov
tools: composer:v2, cs2pr
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install