Skip to content

Improvement of the environment #2

Improvement of the environment

Improvement of the environment #2

Workflow file for this run

name: Code quality check
on: [push, pull_request]
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHPUnit
run: vendor/bin/phpunit