-
-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (45 loc) · 1.62 KB
/
tests.yaml
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
name: Tests
on:
pull_request: null
push:
branches:
- 'main'
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-main"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
typo3-versions:
- { typo3: ^10.4, testing: ^6, php: 7.4 }
- { typo3: ^11.5, testing: ^7, php: 8.0 }
- { typo3: ^12.4, testing: ^7, php: 8.1 }
name: "Run tests with PHP ${{ matrix.typo3-versions.php }}
using TYPO3 ${{ matrix.typo3-versions.typo3 }}
with testing framework version ${{ matrix.typo3-versions.testing }}"
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.typo3-versions.php }}"
extensions: intl, mbstring, pdo_sqlite, pdo_mysql
tools: composer:v2
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Start MySQL
run: sudo /etc/init.d/mysql start
- name: Run composer require
run: "composer require typo3/testing-framework:${{ matrix.typo3-versions.testing }} typo3/cms-core:${{ matrix.typo3-versions.typo3 }}"
# see https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v2"
- name: "Functional tests"
run: |
export typo3DatabaseName="typo3";
export typo3DatabaseHost="127.0.0.1";
export typo3DatabaseUsername="root";
export typo3DatabasePassword="root";
composer test-functional