We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f805c commit 189c667Copy full SHA for 189c667
.github/workflows/test-assignment-submission.yml
@@ -14,6 +14,11 @@ jobs:
14
build:
15
# The type of runner that the job will run on
16
runs-on: ubuntu-latest
17
+ permissions:
18
+ contents: read
19
+ actions: read
20
+ checks: write
21
+
22
23
# Steps represent a sequence of tasks that will be executed as part of the job
24
steps:
@@ -32,3 +37,10 @@ jobs:
32
37
# Runs a set of commands using the runners shell
33
38
- name: Run tests
34
39
run: ./gradlew test
40
+ - name: Test Report
41
+ uses: dorny/test-reporter@v1
42
+ if: success() || failure() # run this step even if previous step failed
43
+ with:
44
+ name: Submission Test Results # Name of the check run which will be created
45
+ path: '**/build/test-results/test/TEST-*.xml' # Path to test results
46
+ reporter: java-junit
0 commit comments