Skip to content

Bump ws from 6.2.1 to 6.2.3 #502

Bump ws from 6.2.1 to 6.2.3

Bump ws from 6.2.1 to 6.2.3 #502

Workflow file for this run

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