-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 946 Bytes
/
javalint.yaml
File metadata and controls
28 lines (25 loc) · 946 Bytes
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
name: Java Presubmit
on: [pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Download google-java-format 1.8
run: wget -q https://github.com/google/google-java-format/releases/download/google-java-format-1.8/google-java-format-1.8-all-deps.jar
- name: Format with google-java-format 1.8
# Run google-java-format on diffed Java files.
run: |
for file in $(git diff --diff-filter=ACM --name-only origin/master HEAD -- . ':!node_modules' | grep -E "(.*)\.(java)$"); do
echo -e "Running google-java-format on:\n $file\n"
if ! java -jar ./google-java-format-1.8-all-deps.jar $file | diff $file -; then
EXIT=1
fi
echo ""
done
exit $EXIT
shell: bash