Skip to content

tests core 12

tests core 12 #398

Workflow file for this run

name: tests core 12
on:
push:
pull_request:
schedule:
- cron: '56 4 * * *'
jobs:
testsuite:
name: all tests with core 12
runs-on: ubuntu-20.04
strategy:
# This prevents cancellation of matrix job runs, if one/two already failed and let the
# rest matrix jobs be be executed anyway.
fail-fast: false
matrix:
php: [ '8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install testing system
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -s composerUpdate
- name: Lint PHP
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -s lint
- name: CGL
if: ${{ matrix.php <= '8.1' }}
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -t 12 -s cgl
- name: Unit Tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -s unit
- name: Functional Tests with mariadb and mysqli
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d mariadb -a mysqli -s functional
- name: Functional Tests with mariadb and pdo_mysql
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d mariadb -a pdo_mysql -s functional
- name: Functional Tests with mysql and mysqli
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d mysql -a mysqli -s functional
- name: Functional Tests with mysql and pdo_mysql
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d mysql -a pdo_mysql -s functional
- name: Functional Tests with postgres
# v11 postgres functional disabled with PHP 8.2 since https://github.com/doctrine/dbal/commit/73eec6d882b99e1e2d2d937accca89c1bd91b2d7
# is not fixed in doctrine core v11 doctrine 2.13.9
if: ${{ matrix.php <= '8.1' }}
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d postgres -s functional
- name: Functional Tests with sqlite
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t 12 -d sqlite -s functional