Skip to content

workflow

workflow #1

Workflow file for this run

name: golangci
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: '1.22'
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: lint
uses: golangci/[email protected]
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true
run: golangci-lint run