Skip to content

[RELEASE] Version 12.2.0 with new demand types, config container serv… #1470

[RELEASE] Version 12.2.0 with new demand types, config container serv…

[RELEASE] Version 12.2.0 with new demand types, config container serv… #1470

Workflow file for this run

name: tests
on:
push:
pull_request:
schedule:
- cron: '40 6 * * *'
jobs:
testsuite:
name: all tests
runs-on: ubuntu-20.04
strategy:
matrix:
php: [ '7.4', '8.0' ]
minMax: [ 'composerInstallMin', 'composerInstallMax' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Composer
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s ${{ matrix.minMax }}
- name: Composer validate
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate
- name: Lint PHP
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
- name: Unit tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit
- name: Functional tests with mariadb
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional
# - name: Functional tests with mssql
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mssql -s functional
# - name: Functional tests with postgres
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional
# - name: Functional tests with sqlite
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d sqlite -s functional