We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1156920 commit 02f7090Copy full SHA for 02f7090
1 file changed
.github/workflows/main.yml
@@ -1,6 +1,7 @@
1
name: Java CI with Gradle
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches: [ "master" ]
7
pull_request:
@@ -28,3 +29,10 @@ jobs:
28
29
30
- name: Build with Gradle Wrapper
31
run: cd java && ./gradlew build test
32
+
33
+ - name: Upload report artifact
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: TestReport # The name of the artifact
37
+ path: /home/runner/work/V2StyxLib/V2StyxLib/java/v2styx-lib/build/reports/tests/test/index.html
38
+ retention-days: 30
0 commit comments