-
-
Notifications
You must be signed in to change notification settings - Fork 20
64 lines (51 loc) · 1.89 KB
/
test.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Tests
on:
push:
branches-ignore:
- 'l10n_master'
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
php-versions: [8.1, 8.2]
typo3-versions: [12.4]
name: Run tests with PHP ${{ matrix.php-versions }} using TYPO3 ${{ matrix.typo3-versions }}
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: intl, mbstring, pdo_sqlite
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-typo3-${{ matrix.typo3-versions }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php-versions }}-typo3-${{ matrix.typo3-versions }}-composer-
${{ runner.os }}-php-${{ matrix.php-versions }}-typo3-${{ matrix.typo3-versions }}-
${{ runner.os }}-php-${{ matrix.php-versions }}-typo3-
${{ runner.os }}-php-${{ matrix.php-versions }}-
${{ runner.os }}-php-
${{ runner.os }}-
- name: Install composer dependencies
run: composer require typo3/cms-core "^${{ matrix.typo3-versions }}" --prefer-dist --no-progress
- name: Run PHP lint
run: composer run-script test-php-lint
- name: Run PHPCS
run: composer run-script test-php-cs-fixer
- name: Run PHPMD
run: composer run-script test-php-md
- name: Run TypoScript linter
run: composer run-script test-typoscript-lint