From ccc380a6a01f48d32efb5613c567a5fd8384bfa8 Mon Sep 17 00:00:00 2001 From: Jitendra Adhikari Date: Thu, 6 May 2021 19:32:55 +0700 Subject: [PATCH] chore(workflows): add lint action --- .github/workflows/lint-action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lint-action.yml diff --git a/.github/workflows/lint-action.yml b/.github/workflows/lint-action.yml new file mode 100644 index 0000000..ac65a31 --- /dev/null +++ b/.github/workflows/lint-action.yml @@ -0,0 +1,13 @@ +name: lint +on: [push] +jobs: + golint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Lint + id: golint + uses: Jerome1337/go-action/lint@master + - name: Lint Output + run: echo "${{ steps.golint.outputs.golint-output }}"