-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (43 loc) · 1.32 KB
/
int-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
44
45
name: Integration test module
on:
push:
jobs:
work-source-identifier-tirs-tests:
uses: ./.github/workflows/run-int-tests.yml
with:
testPath: org.olf.TIRS.WorkSourceIdentifier.*
outputDirectory: WorkSourceIdentifierTests
id-first-tirs-tests:
uses: ./.github/workflows/run-int-tests.yml
with:
testPath: org.olf.TIRS.IdFirstTIRS.*
outputDirectory: IdFirstTests
tirsEnvVar: IdFirst
agreement-tests:
uses: ./.github/workflows/run-int-tests.yml
with:
testPath: org.olf.Agreements.*
outputDirectory: Agreements
string-template-tests:
uses: ./.github/workflows/run-int-tests.yml
with:
testPath: org.olf.StringTemplate.*
outputDirectory: StringTemplate
general-tests:
uses: ./.github/workflows/run-int-tests.yml
with:
testPath: org.olf.General.*
outputDirectory: General
publish-test-results:
if: always()
needs: [work-source-identifier-tirs-tests, id-first-tirs-tests, agreement-tests, string-template-tests, general-tests]
runs-on: ubuntu-latest
steps:
- name: 'download test results'
uses: actions/download-artifact@v4
with:
path: testLogs
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "testLogs/**/*.xml"