Skip to content

Merge pull request #66 from gopasspw/dependabot/github_actions/golang… #118

Merge pull request #66 from gopasspw/dependabot/github_actions/golang…

Merge pull request #66 from gopasspw/dependabot/github_actions/golang… #118

Workflow file for this run

name: golangci-lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest # we have a list of linters in our .golangci.yml config file
only-new-issues: true