Skip to content

Merge pull request #34 from swarit-stepsecurity/swarit/fix/33 #119

Merge pull request #34 from swarit-stepsecurity/swarit/fix/33

Merge pull request #34 from swarit-stepsecurity/swarit/fix/33 #119

Workflow file for this run

name: golangci-lint
on:
push:
permissions:
contents: read
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Vendor modules for later steps.
run: |
go mod vendor
- uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.55
args:
-v