Fix default value for modManagerLog.occurred column #957
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: "Code Quality" | |
on: | |
pull_request: | |
paths: | |
- "**.php" | |
- "phpcs.xml" | |
- ".github/workflows/phpcs.yml" | |
jobs: | |
phpcs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install PHP_CodeSniffer | |
run: | | |
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar | |
php phpcs.phar --version --config-set ignore_warnings_on_exit 1 | |
- uses: thenabeel/action-phpcs@v8 | |
with: | |
files: "**.php" | |
phpcs_path: php phpcs.phar | |
standard: phpcs.xml | |
fail_on_warnings: false |