File tree 1 file changed +3
-3
lines changed
.github/actions/run-tests
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
shell : bash
26
26
27
27
- name : Upload Test Reports
28
- if : ${{ inputs. upload-test-reports == 'true' }}
28
+ if : ${{ inputs[' upload-test-reports'] == 'true' }}
29
29
uses : actions/upload-artifact@v4
30
30
with :
31
31
name : test-reports
@@ -34,12 +34,12 @@ runs:
34
34
retention-days : 14
35
35
36
36
- name : Create Code Coverage Reports
37
- if : ${{ inputs. upload-code-coverage-reports == 'true' }}
37
+ if : ${{ inputs[' upload-code-coverage-reports'] == 'true' }}
38
38
run : ./gradlew jacocoRootReport
39
39
shell : bash
40
40
41
41
- name : Upload Code Coverage Report
42
- if : ${{ inputs. upload-code-coverage-reports == 'true' }}
42
+ if : ${{ inputs[' upload-code-coverage-reports'] == 'true' }}
43
43
uses : actions/upload-artifact@v4
44
44
with :
45
45
name : code-coverage
You can’t perform that action at this time.
0 commit comments