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 8b88ba0 commit 9797d0dCopy full SHA for 9797d0d
.github/workflows/ci.yml
@@ -23,6 +23,7 @@ jobs:
23
distribution:
24
- 'adopt-hotspot'
25
- 'oracle'
26
+ - 'graalvm'
27
include:
28
- java: 21
29
distribution: 'microsoft'
@@ -73,6 +74,11 @@ jobs:
73
74
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75
- name: 'Test'
76
run: ./gradlew test runGameTestServer jacocoTestReport
77
+ - name: 'Deploy test failures as GitHub CI artifacts'
78
+ uses: actions/upload-artifact@v4
79
+ if: failure()
80
+ with:
81
+ path: build/reports/tests/test/index.html
82
- name: 'Submit coverage results'
83
uses: coverallsapp/github-action@v2
84
- name: 'Deploy as GitHub CI artifacts'
0 commit comments