File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 64
64
clojureRef : ${{ inputs.clojureRef }}
65
65
subjectRepo : ' xsc/pandect'
66
66
subjectRef : ' main'
67
+
68
+ test-pedestal :
69
+ uses : ./.github/workflows/deps-test.yml
70
+ with :
71
+ clojureRepo : ${{ inputs.clojureRepo }}
72
+ clojureRef : ${{ inputs.clojureRef }}
73
+ subjectRepo : ' pedestal/pedestal'
74
+ subjectRef : ' master'
75
+ setUpDir : ' ./service'
76
+ setUpCmd : ' clojure -X:deps:local prep'
77
+ testDir : ' ./tests'
78
+ testCmd : ' -X:test'
Original file line number Diff line number Diff line change 20
20
description : " The branch, tag or SHA to checkout for subject repo"
21
21
type : string
22
22
required : true
23
+ SetUpDir :
24
+ description : " Directory setup invocation must be run from"
25
+ type : string
26
+ default : ' .'
27
+ required : false
28
+ SetUpCmd :
29
+ description : " Command to invoke setup"
30
+ type : string
31
+ required : false
32
+ default : ' echo "No setup"'
23
33
testDir :
24
34
description : " Directory test invocation must be run from"
25
35
type : string
87
97
ref : ${{ inputs.subjectRef }}
88
98
path : ' subject-source'
89
99
100
+ - name : Run Setup
101
+ run : |
102
+ cd /home/runner/work/test.regression/test.regression/subject-source
103
+ cd ${{ inputs.setUpDir }}
104
+ ${{ inputs.setUpCmd }}
105
+
90
106
- name : Run Tests
91
107
run : |
92
108
cd /home/runner/work/test.regression/test.regression/subject-source
You can’t perform that action at this time.
0 commit comments