From 8f27e6ee3f0158da6ca13d4e96e327348d5c0bd1 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 28 May 2021 12:20:07 +0200 Subject: [PATCH] Add linting with PHP 8 to the CI builds We cannot (easily) run the unit tests with PHP 8 yet as long as we still support PHP 5.6 because there is no version of PHPUnit that runs on PHP from 5.6 up to 8.0. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe033c92..c03ba990 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4' ] + php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] steps: - name: Checkout