Skip to content

fix: Fix the error that occurs during batch update menu when using m… #160

fix: Fix the error that occurs during batch update menu when using m…

fix: Fix the error that occurs during batch update menu when using m… #160

Workflow file for this run

name: Linter
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**/*.go"
- ".github/workflows/linter.yml"
jobs:
lint:
if: github.repository == 'go-sonic/sonic'
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.19
- name: Checkout codebase
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --config=.golangci.yml
only-new-issues: true