Skip to content

Update for DBAL 4

Update for DBAL 4 #102

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
create:
tags:
- '*'
jobs:
testsuite:
name: Unittests
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Validate composer.json
run: composer validate
- name: Composer install
run: composer install --prefer-dist --no-progress
- name: Build test data
run: |
echo "TEST_CONNECTION='sqlite3:///tests/resources/users.db'" > .env
tests/resources/seed.php db:create
tests/resources/seed.php db:seed
- name: Run test suite
run: vendor/bin/phpunit