Skip to content

Update github action pipelines and go release #10

Update github action pipelines and go release

Update github action pipelines and go release #10

Workflow file for this run

---
name: GoLang Linting
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '**.go'
- 'vendor/**'
- '.github/workflows/**'
jobs:
golint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: golangci/golangci-lint-action@v2
with:
version: 'v1.51.1'
args: -v