Bump ws from 6.2.1 to 6.2.3 #502
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java Format | |
on: [push] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Format with google-java-format 1.8 | |
run: | | |
echo "Downloading google-java-format 1.8..." | |
wget -q https://github.com/google/google-java-format/releases/download/google-java-format-1.8/google-java-format-1.8-all-deps.jar | |
echo "" | |
FILES=`find . -name "*.java" -type f` | |
echo "Found the following Java files:" | |
for file in $FILES; do | |
echo $file | |
done | |
echo "" | |
EXIT=0 | |
for file in $FILES; 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 |