Set state to stable #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
testsuite: | |
name: all tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '8.1', '8.2' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Composer | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate | |
- 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 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 |