Replace extkey for deprecated TER repo #7
Workflow file for this run
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: Test video_shariff against TYPO3 11 | |
on: [pull_request] | |
jobs: | |
CGL: | |
name: Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate composer.json and composer.lock | |
run: Build/Scripts/runTests.sh -t 11 -p 8.1 -s composer -e 'validate' | |
- name: Install testing system | |
run: Build/Scripts/runTests.sh -t 11 -p 8.1 -s composerInstall | |
- name: Lint PHP | |
run: Build/Scripts/runTests.sh -t 11 -p 8.1 -s lint | |
- name: Validate code against CGL | |
run: Build/Scripts/runTests.sh -t 11 -p 8.1 -s cgl -n | |
testing: | |
name: PHP ${{ matrix.php }} Unit and Functional Tests | |
needs: CGL | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '7.4', '8.0', '8.1' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install testing system | |
run: Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php }} -s composerInstall | |
- name: Functional Tests with mariadb and mysqli | |
run: Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php }} -d mariadb -a mysqli -s functional |