From 45079db704414c135b7d7e4eadb18a42142c9cc7 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 22 Aug 2024 04:42:00 +0200 Subject: [PATCH] GH Actions: also lint against _next_ PHP version The PHP lint job currently checks all PHP files for parse/compile errors against a limited set of PHP versions, including the high/low versions. It did not run the linter against the _next_ (upcoming) PHP version yet. This has now been added with the `'nightly'` alias, which means that the version will automatically run through to the next PHP version when a new PHP branchs gets cut, without us needing to manually maintain this. --- .github/workflows/phplint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phplint.yml b/.github/workflows/phplint.yml index d147941b..3f4dd4a2 100644 --- a/.github/workflows/phplint.yml +++ b/.github/workflows/phplint.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - php: ['5.4', '5.6', '7.2', 'latest'] + php: ['5.4', '5.6', '7.2', 'latest', 'nightly'] name: "PHP Lint: PHP ${{ matrix.php }}"