FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaQueryBuilder/.github/workflows/code-quality.yml at fix/java-17 · EzFramework/JavaQueryBuilder · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EzFramework
/
JavaQueryBuilder
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
8
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaQueryBuilder
/
.github
/
workflows
/
code-quality.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
49 lines (45 loc) · 1.2 KB
Breadcrumbs
JavaQueryBuilder
/
.github
/
workflows
/
code-quality.yml
Copy path
File metadata and controls
49 lines (45 loc) · 1.2 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
name
:
Code Quality
permissions
:
checks
:
write
pull-requests
:
write
contents
:
read
on
:
push
:
branches
:
[ "main", "master" ]
pull_request
:
branches
:
[ "main", "master" ]
jobs
:
checkstyle
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout code
uses
:
actions/checkout@v6
-
name
:
Set up JDK 17
uses
:
actions/setup-java@v5
with
:
distribution
:
'
temurin
'
java-version
:
'
17
'
-
name
:
Run Checkstyle
run
:
mvn --batch-mode checkstyle:check
-
name
:
Annotate Checkstyle results
if
:
always()
uses
:
jwgmeligmeyling/checkstyle-github-action@v1
with
:
path
:
target/checkstyle-result.xml
coverage
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout code
uses
:
actions/checkout@v6
-
name
:
Set up JDK 17
uses
:
actions/setup-java@v5
with
:
distribution
:
'
temurin
'
java-version
:
'
17
'
-
name
:
Build with coverage
run
:
mvn --batch-mode clean verify
-
name
:
Upload coverage to Codecov
uses
:
codecov/codecov-action@v6
with
:
files
:
target/site/jacoco/jacoco.xml
token
:
${{ secrets.CODECOV_TOKEN }}
Back
|
FazBrowse Home
|
New Git URL