Skip to content

new version

new version #44

Workflow file for this run

name: lint
on:
push:
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: install dependencies
run: |
go get -v -t -d ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58