From d7e9d9607a8237ebd872074003b63acbe6a4df30 Mon Sep 17 00:00:00 2001 From: weisj <31143295+weisJ@users.noreply.github.com> Date: Wed, 18 Aug 2021 22:30:30 +0200 Subject: [PATCH] CI: Add errorprone check --- .github/workflows/errorprone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/errorprone.yml diff --git a/.github/workflows/errorprone.yml b/.github/workflows/errorprone.yml new file mode 100644 index 00000000..93c9245f --- /dev/null +++ b/.github/workflows/errorprone.yml @@ -0,0 +1,14 @@ +name: Autostyle + +on: [push, pull_request] + +jobs: + autostlye: + name: "Errorprone" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 10 + - name: Check + run: ./gradlew compileJava -PenableErrorProne