diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b101dc2f9..ea3aabd63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] + php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] name: PHP ${{ matrix.php }} steps: @@ -30,14 +30,9 @@ jobs: - name: PHP Lint run: if find . -name "*.php" ! -path "./vendor/*" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v "No syntax errors detected"; then exit 1; fi - - name: Download codeception (PHP 7.2 and above) - if: matrix.php >= '7.2' + - name: Download codeception run: wget https://codeception.com/codecept.phar - - name: Download codeception (PHP 7.1 and below) - if: matrix.php <= '7.1' - run: wget https://codeception.com/php56/codecept.phar - - name: Run PHP development server run: php -S localhost:8000 &