Skip to content

fix: typo

fix: typo #110

Workflow file for this run

name: lint
on:
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
- '.github/'
- 'images/'
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.18'
cache: false
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
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.49
args: --issues-exit-code=0
only-new-issues: true
# Optional: golangci-lint command line arguments.
# args: ./the-only-dir-to-analyze/...