-
-
Notifications
You must be signed in to change notification settings - Fork 24
43 lines (35 loc) · 1.06 KB
/
tests.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
name: Tests
on: [ push, pull_request ]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- typo3-version: "^13.4"
php-version: "8.3"
composer-flags: ""
- typo3-version: "^13.4"
php-version: "8.3"
composer-flags: " --prefer-lowest"
- typo3-version: "^13.4"
php-version: "8.4"
composer-flags: ""
- typo3-version: "^13.4"
php-version: "8.4"
composer-flags: " --prefer-lowest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Install specific TYPO3 version"
run: "composer update --no-interaction --no-progress --with typo3/cms-core:${{ matrix.typo3-version }} ${{ matrix.composer-flags }}"
- name: "Tests"
run: |
vendor/bin/phing