We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c574f8f + 28ad51a commit b05b51eCopy full SHA for b05b51e
.github/workflows/quicktest.yml
@@ -55,11 +55,11 @@ jobs:
55
custom-cache-suffix: $(date -u "+%Y-%m")
56
57
- name: Lint against parse errors (PHP 7.2+)
58
- if: ${{ matrix.php >= '7.2' }}
+ if: ${{ matrix.php >= '7.2' || matrix.php == 'latest' }}
59
run: composer lint
60
61
- name: Lint against parse errors (PHP < 7.2)
62
- if: ${{ matrix.php < '7.2' }}
+ if: ${{ matrix.php < '7.2' && matrix.php != 'latest' }}
63
run: composer lintlt72
64
65
# Check that any sniffs available are feature complete.
0 commit comments