Skip to content

Issue #27: Update dependencies #40

Issue #27: Update dependencies

Issue #27: Update dependencies #40

Workflow file for this run

name: Tests
on:
push: ~
pull_request: ~
jobs:
phpunit:
name: PHPUnit on ${{ matrix.php }} ${{ matrix.composer-flags }}
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.3', '8.4']
coverage: [true]
composer-flags: ['']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, mbstring
coverage: pcov
tools: composer:v2
- run: composer update --no-progress ${{ matrix.composer-flags }}
- run: vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml