[FIX] Misc Fixes for Actions #12
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: PHP Quality Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: write | |
issues: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.1, 8.2, 8.3] | |
name: Test PHP ${{ matrix.php }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up PHP | |
uses: setup-php/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: pcov | |
- name: Install dependencies | |
run: composer install | |
- name: Run lint | |
run: composer run phpcs | |
- name: Run tests | |
run: composer run phpunit | |
- name: Run coverage-check | |
run: composer run coverage-check | |
- name: Run static analysis | |
run: composer run phpstan |