Skip to content

update

update #35

Workflow file for this run

name: tests
on:
push:
branches: [master, main]
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
# phlix-shared requires PHP ^8.3, so the matrix matches.
php: ['8.3', '8.4']
steps:
- uses: actions/checkout@v6
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run PHPUnit
run: vendor/bin/phpunit --colors=always