Skip to content

fix: changelog

fix: changelog #307

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php: ['8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: fileinfo
tools: composer:v2
coverage: none
- name: Install PHP dependencies
run: composer update --prefer-stable --no-interaction --no-progress --ansi
- name: Unit Tests
run: vendor/bin/phpunit --colors=always