Skip to content

Merge pull request #10 from ThomasLandauer/patch-2 #34

Merge pull request #10 from ThomasLandauer/patch-2

Merge pull request #10 from ThomasLandauer/patch-2 #34

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 8.1, 8.2]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: phpcs, phpstan
- name: Validate composer.json
run: composer validate
- name: Install dependencies
run: composer install
- name: Code style
run: phpcs src/ tests/
- name: Static analysis
run: phpstan analyze --level=5 src/ tests/
- name: Run tests
run: ./vendor/bin/phpunit tests/