Skip to content

Update libraries

Update libraries #297

Workflow file for this run

name: 'Unit tests'
on:
push:
branches: ["master"]
pull_request:
jobs:
php:
name: Setup PHP and tools
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.4', '8.5' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP and tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: bcmath, mbstring, xdebug
tools: phpunit, composer
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: php vendor/bin/phpunit --no-coverage