Skip to content

Updating dependencies #22

Updating dependencies

Updating dependencies #22

Workflow file for this run

name: Run tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Run composer install
run: composer install
- name: Run tests
run: composer test