Skip to content

Update phpunit/phpunit requirement from ^10.0 to ^10.0 || ^11.0 #218

Update phpunit/phpunit requirement from ^10.0 to ^10.0 || ^11.0

Update phpunit/phpunit requirement from ^10.0 to ^10.0 || ^11.0 #218

Workflow file for this run

name: PHPUnit Tests
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
php-${{ matrix.php-versions }}-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run Tests
run: php vendor/bin/phpunit --coverage-clover .build/clover.xml
- name: Record Coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: php vendor/bin/php-coveralls