Skip to content

feat: php 8 support #10

feat: php 8 support

feat: php 8 support #10

Workflow file for this run

name: Tests
on:
push:
branches: [ $default-branch ]
pull_request: ~
permissions:
contents: read
jobs:
phpunit:
strategy:
matrix:
include:
- php: '7.1'
- php: '7.2'
- php: '7.3'
- php: '7.4'
- php: '8.0'
- php: '8.1'
- php: '8.2'
- php: '8.3'
fail-fast: false
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
tools: phpunit:6
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}
- name: Install global packages
run: composer global require satooshi/php-coveralls:@stable phpunit/phpunit:@stable --no-update
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: phpunit -c phpunit.xml.dist