Skip to content

Commit 28ad51a

Browse files
committed
GH Actions/quicktest: fix incorrect condition
1 parent c574f8f commit 28ad51a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/quicktest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
custom-cache-suffix: $(date -u "+%Y-%m")
5656

5757
- name: Lint against parse errors (PHP 7.2+)
58-
if: ${{ matrix.php >= '7.2' }}
58+
if: ${{ matrix.php >= '7.2' || matrix.php == 'latest' }}
5959
run: composer lint
6060

6161
- name: Lint against parse errors (PHP < 7.2)
62-
if: ${{ matrix.php < '7.2' }}
62+
if: ${{ matrix.php < '7.2' && matrix.php != 'latest' }}
6363
run: composer lintlt72
6464

6565
# Check that any sniffs available are feature complete.

0 commit comments

Comments
 (0)