Commit f4d718b 1 parent 8c33311 commit f4d718b Copy full SHA for f4d718b
File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 4
4
types : [ opened, reopened, synchronize ]
5
5
push :
6
6
branches : [ "main" ]
7
+ workflow_dispatch :
7
8
8
9
jobs :
9
10
test :
10
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ wal-type : [ "file", "s3" ]
11
15
steps :
12
16
- uses : actions/checkout@v4
13
17
- uses : actions/setup-java@v4
@@ -36,11 +40,13 @@ jobs:
36
40
- name : Run tests
37
41
working-directory : ./s3stream-e2e
38
42
run : mvn test -pl integration
43
+ env :
44
+ WAL_TYPE : ${{ matrix.wal-type }}
39
45
- name : Publish Test Report
40
46
uses : mikepenz/action-junit-report@v3
41
47
if : success() || failure() # always run even if the previous step fails
42
48
with :
43
49
report_paths : ' **/surefire-reports/TEST-*.xml'
44
50
annotate_only : true
45
51
include_passed : true
46
- detailed_summary : true
52
+ detailed_summary : true
You can’t perform that action at this time.
0 commit comments