Skip to content

Update PHP requirements for versions up to 8.3 (#16) #22

Update PHP requirements for versions up to 8.3 (#16)

Update PHP requirements for versions up to 8.3 (#16) #22

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
composer-flag:
- '--prefer-dist'
- '--prefer-stable --prefer-lowest'
name: Test PHP ${{ matrix.php-version }} / composer ${{ matrix.composer-flag }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP version ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Confirm PHP Version
run: php -v
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install Composer dependencies
run: composer update ${{ matrix.composer-flag }} --no-interaction --no-progress
# This may be necessary for older dev packages that do not have
# upper PHP compatibility version constraints.
- name: Update Composer Dev dependencies
run: composer update phpunit/phpunit --prefer-dist --no-interaction --no-progress
- name: Run Code Style Check for PHP ${{ matrix.php-version }}
run: composer run-script style-check
if: matrix.php-version == '8.2' && matrix.composer-flag == '--prefer-dist'
- name: Run tests for PHP ${{ matrix.php-version }}
run: composer run-script test
- name: Submit test coverage to Coveralls
run: vendor/bin/php-coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: success() && matrix.php-version == '7.4' && matrix.composer-flag == '--prefer-dist'