diff options
Diffstat (limited to '--github/workflows/linters.yml')
-rw-r--r-- | --github/workflows/linters.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/--github/workflows/linters.yml b/--github/workflows/linters.yml new file mode 100644 index 00000000..cee7085c --- /dev/null +++ b/--github/workflows/linters.yml @@ -0,0 +1,18 @@ +name: Linters + +on: [push, pull_request] + +jobs: + golangci-lint: + name: Golang-CI (lint) + runs-on: ubuntu-20.04 + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Run linter + uses: golangci/golangci-lint-action@v2 # Action page: <https://github.com/golangci/golangci-lint-action> + with: + version: v1.40 # without patch version + only-new-issues: false # show only new issues if it's a pull request + args: --timeout=10m |