Add TL #16
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: Run PHP Linter | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- review_requested | |
- synchronize | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Composer install | |
run: composer install | |
- name: Check coding standards | |
run: composer -n code-sniff |