Add WebTestCase
#91
Workflow file for this run
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: | |
branches: [ "main" ] | |
schedule: | |
- cron: "10 4 * * 2" # Every Tuesday at 4:10 AM UTC | |
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 --ansi --strict | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Normalize composer.json | |
run: composer normalize --ansi --dry-run --no-check-lock --no-update-lock | |
- name: Check dependency issues | |
run: composer dependencies:check | |
- name: Check CS | |
run: composer cs:check | |
- name: Check PHPStan | |
run: composer phpstan |