-
Notifications
You must be signed in to change notification settings - Fork 52
40 lines (33 loc) · 1017 Bytes
/
java-ci-lint.yaml
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
---
name: Check Java Code
on:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: true
jobs:
code-style:
runs-on: ubuntu-latest
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main@sha256:edd58762b4e2447676f1ccd30ba9d03f358548b2e047f277ff693d19f6fefb90
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Check Code Formatting
run: |
sh ./style-guide/google-format-ci-v0.1.sh
env:
GOOGLE_JAR_VERSION: 1.22.0
GOOGLE_JAR_NAME: google-java-format-1.22.0-all-deps.jar
- name: Checkstyle
run: |
pushd src/scheduler
mvn --no-transfer-progress jxr:jxr
mvn --no-transfer-progress checkstyle:checkstyle
popd
- name: Publish Results on Pull Request
run: |
go run src/fmt_chkstyle/format_checkstyle.go