Skip to content

Merge pull request #189 from WheeskyJack/linter_github_workflow #2

Merge pull request #189 from WheeskyJack/linter_github_workflow

Merge pull request #189 from WheeskyJack/linter_github_workflow #2

Workflow file for this run

name: golangci-lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
# Optional: working directory, useful for monorepos
# working-directory: somedir
# Optional: golangci-lint command line arguments.
#
# Note: By default, the `.golangci.yml` file should be at the root of the repository.
# The location of the configuration file can be changed by using `--config=`
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
args: --verbose