From cd92d8a79681d5da13a5fe5d988c634e14502d91 Mon Sep 17 00:00:00 2001 From: burntcarrot Date: Wed, 14 Jul 2021 09:59:52 +0530 Subject: [PATCH] ci: add gofmt action --- .github/workflows/gofmt.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gofmt.yml diff --git a/.github/workflows/gofmt.yml b/.github/workflows/gofmt.yml new file mode 100644 index 0000000..4c073c9 --- /dev/null +++ b/.github/workflows/gofmt.yml @@ -0,0 +1,20 @@ +name: "gofmt" + +on: [ push,pull_request ] + +jobs: + gofmt: + name: gofmt + runs-on: ubuntu-latest + + steps: + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + go-version: "1.15" + + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Format + run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi