-
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.69 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:
- master
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-master"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
php-versions: [ 7.4, 8.0, 8.1 ]
typo3-versions:
- { typo3: 10, testing: 6 }
- { typo3: 11, testing: 6 }
- { typo3: 12, testing: 6 }
name: "Run tests with PHP ${{ matrix.php-versions }}
using TYPO3 ${{ matrix.typo3-versions.typo3 }}
with testing framework version ${{ matrix.typo3-versions.testing }}"
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-versions }}"
extensions: intl, mbstring, pdo_sqlite, pdo_mysql
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Start MySQL
run: sudo /etc/init.d/mysql start
# see https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v2"
- name: "Run Unit tests"
run: composer test-unit
- name: "Functional tests"
run: |
export typo3DatabaseName="typo3";
export typo3DatabaseHost="127.0.0.1";
export typo3DatabaseUsername="root";
export typo3DatabasePassword="root";
composer test-functional