Skip to content

fix: 修复命名空间冲突 #4

fix: 修复命名空间冲突

fix: 修复命名空间冲突 #4

Workflow file for this run

name: Lint
# 定义触发条件
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
args: '--config .golangci.yml'