Skip to content

Add directory page

Add directory page #36

Workflow file for this run

name: tests
on:
push:
branches: [ develop ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: posix, dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: composer install --no-interaction --no-suggest
- name: Copy .env.testing.example to .env.testing
run: cp .env.testing.example .env.testing
- name: Run PHP tests
run: vendor/bin/phpunit