FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
RLib/.github/workflows/develop.yml at develop · JavaSaBr/RLib · GitHub
JavaSaBr
/
RLib
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
5
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
RLib
/
.github
/
workflows
/
develop.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
73 lines (60 loc) · 1.9 KB
Breadcrumbs
RLib
/
.github
/
workflows
/
develop.yml
Copy path
File metadata and controls
73 lines (60 loc) · 1.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name
:
Minimal branch verification
on
:
push
:
branches
:
[ "develop" ]
pull_request
:
branches
:
[ "develop" ]
jobs
:
build
:
runs-on
:
ubuntu-latest
permissions
:
checks
:
write
contents
:
write
pull-requests
:
write
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Set up JDK 21
uses
:
actions/setup-java@v5
with
:
java-version
:
'
21
'
distribution
:
'
temurin
'
-
name
:
Setup Gradle
uses
:
gradle/actions/setup-gradle@v6
-
name
:
Compile all modules
run
:
./gradlew testClasses
-
name
:
Run tests for all modules
run
:
./gradlew test
-
name
:
Generate test report
uses
:
mikepenz/action-junit-report@v6
if
:
success() || failure()
#
always run even if the previous step fails
with
:
report_paths
:
'
**/build/test-results/test/TEST-*.xml
'
summary
:
true
detailed_summary
:
true
require_passed_tests
:
true
include_passed
:
true
-
name
:
Generate jacoco reports
run
:
./gradlew jacocoTestReport
-
name
:
Generate aggregated jacoco report
run
:
./gradlew test-coverage:testCodeCoverageReport
-
name
:
Add coverage to PR
id
:
jacoco
uses
:
madrapps/jacoco-report@v1.7.2
with
:
paths
:
${{ github.workspace }}/test-coverage/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml
token
:
${{ secrets.GITHUB_TOKEN }}
min-coverage-overall
:
40
min-coverage-changed-files
:
60
dependency-submission
:
runs-on
:
ubuntu-latest
permissions
:
contents
:
write
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Set up JDK 21
uses
:
actions/setup-java@v5
with
:
java-version
:
'
21
'
distribution
:
'
temurin
'
-
name
:
Generate and submit dependency graph
uses
:
gradle/actions/dependency-submission@v6
Back
|
FazBrowse Home
|
New Git URL