Skip to content

Avoid using filepath.Dir function #64

Avoid using filepath.Dir function

Avoid using filepath.Dir function #64

Workflow file for this run

name: Lint (golangci-lint)
on:
pull_request:
paths:
- '**.go'
jobs:
golangci-lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-cache: true
only-new-issues: false
args: --verbose --timeout=10m