-
Notifications
You must be signed in to change notification settings - Fork 20
41 lines (31 loc) · 1.13 KB
/
main.yml
File metadata and controls
41 lines (31 loc) · 1.13 KB
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
name: tests
on:
push:
branches:
- v11
jobs:
testsuite:
name: Testsuit
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: tests-v11
- name: Start DDEV
uses: jonaseberle/github-action-setup-ddev@v1
- name: Import database
run: ddev import-db --src=./dump.sql
- name: Install composer packages
run: ddev composer install
- name: Psalm
run: ddev exec bin/psalm
- name: Functional test suit
run: ddev exec bin/phpunit -c public/typo3conf/ext/routes/Tests/Build/FunctionalTests.xml
- name: Acceptance [Requirements]
run: ddev exec bin/codecept run acceptance -f -vvv -c public/typo3conf/ext/routes/Tests/requirements.yml --env github
- name: Acceptance [Crud]
run: ddev exec bin/codecept run acceptance -f -vvv -c public/typo3conf/ext/routes/Tests/crud.suite.yml --env github
- name: Acceptance [Backend]
run: ddev exec bin/codecept run acceptance -f -vvv -c public/typo3conf/ext/routes/Tests/Backend.suite.yml --env github
if: ${{ false }}