Skip to content

Update instructions #618

Update instructions

Update instructions #618

Workflow file for this run

name: CI
on: [ push ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Git clone
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: gd
- name: Install Composer dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Run PHPUnit
run: vendor/bin/phpunit --configuration phpunit.xml