chore: squizlabs/php_codesniffer 3.8.0 #2
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: "Check test-flight" | |
on: | |
pull_request: | |
jobs: | |
coding-standards: | |
name: "Check test-flight" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "7.4" | |
tools: composer:v2 | |
ini-values: "zend.assertions=1" | |
- name: Install dependencies | |
run: composer require cundd/test-flight --no-interaction --no-progress | |
- name: Run test-flight | |
run: | | |
vendor/bin/test-flight README.md | |
vendor/bin/test-flight classes/ |