Add April 2024 meetup #99
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: Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install PHP dependencies | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.3 | |
- name: Run PHP Code Sniffer | |
uses: php-actions/phpcs@v1 | |
with: | |
php_version: 8.3 | |
path: src/ | |
standard: phpcs.xml |