From f2b3fda36672404cce4adc72055276a4e6eb54e8 Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Tue, 29 Oct 2019 19:29:16 -0700 Subject: update:ci:Trying out using github action for checkstyle --- .github/workflows/checkstyle.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/checkstyle.yml diff --git a/.github/workflows/checkstyle.yml b/.github/workflows/checkstyle.yml new file mode 100644 index 000000000..5b0a69318 --- /dev/null +++ b/.github/workflows/checkstyle.yml @@ -0,0 +1,12 @@ +name: Go +on: [push] +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@latest + - uses: actions/setup-java@v1 + with: + java-version: '1.12' + - run: ./gradlew checkstyleMain -- cgit v1.2.1