Skip to content

Update README.md

Update README.md #298

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
testing:
name: Testing
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Lint PHP'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
- name: 'Install testing system'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate
- name: 'Composer validate'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate
- name: 'Composer normalize'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerNormalize -n
- name: 'CGL'
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -s cgl
- name: 'Execute unit tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit
- name: 'Execute functional tests with MariaDB'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional
- name: 'Execute functional tests with SQLite'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d sqlite -s functional
- name: 'Execute functional tests with Postgres'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional