Skip to content

Initialize the framework when formatting DCA values (#216) #111

Initialize the framework when formatting DCA values (#216)

Initialize the framework when formatting DCA values (#216) #111

Workflow file for this run

name: CI
on: [push]
jobs:
tests:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v3
- name: Install the dependencies
run: composer install --no-interaction --no-progress
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always