-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (28 loc) · 938 Bytes
/
tests_static.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
# statics checks
# - run only with latest TYPO3 and PHP version
name: CI (static)
on:
push:
pull_request:
jobs:
testsuite_ci_static:
name: CI static
runs-on: ubuntu-20.04
strategy:
matrix:
# run static checks only with latest PHP version (for supported TYPO3 versions)
#php: [ '8.1', '8.2', '8.3' ]
php: [ '8.3' ]
# run static checks only with latest TYPO3 version
minMax: [ '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: cgl
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s cgl -v -n
- name: Lint PHP
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint