2 files changed,
12 insertions(+),
17 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed by:
GitHub
noreply@github.com
Committed at:
2024-10-17 23:06:52 +0300
Parent:
3208f70
M
.github/workflows/golang.yml
@@ -3,7 +3,9 @@
on: push: branches: [main] + paths: &go_files ["*.go", "go.mod", "go.sum"] pull_request: + paths: *go_files jobs: release:@@ -25,3 +27,13 @@ run: go test -v --short ./...
- name: e2e tests run: go test -v ./e2e/ + + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Golangci Lint + uses: golangci/golangci-lint-action@v6 + with: + version: latest + args: ./...