-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (32 loc) · 1.13 KB
/
typo3_12.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Test sync_crop_areas against TYPO3 12
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 12 -p 8.1 -s composer -e 'validate'
- name: Install testing system
run: Build/Scripts/runTests.sh -t 12 -p 8.1 -s composerInstall
- name: Lint PHP
run: Build/Scripts/runTests.sh -t 12 -p 8.1 -s lint
- name: Validate code against CGL
run: Build/Scripts/runTests.sh -t 12 -p 8.1 -s cgl -n
testing:
name: PHP Unit and Functional Tests
needs: CGL
runs-on: ubuntu-latest
strategy:
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 -t 12 -p ${{ matrix.php }} -s composerInstall
- name: Functional Tests with mariadb and mysqli
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d mariadb -a mysqli -s functional