Add tests #19
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: Quality Assurance | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
qa: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Validate composer.json | |
run: composer validate --strict | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Normalize composer.json | |
run: composer normalize --dry-run --no-check-lock | |
- name: Check CS-Fixer | |
run: composer cs:check | |
- name: Check PHPStan | |
run: composer phpstan |