Skip to content

chore(deps): update golangci/golangci-lint-action action to v5 - autoclosed #71

chore(deps): update golangci/golangci-lint-action action to v5 - autoclosed

chore(deps): update golangci/golangci-lint-action action to v5 - autoclosed #71

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GOLANGCI_LINT_VERSION: "v1.57.1"
jobs:
build:
strategy:
matrix:
go-version: [ '1.17', '1.18', '1.19', '1.20', '1.21']
os: [ ubuntu-22.04, macos-12, windows-2022 ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5.0.0
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4.1.1
- name: Enforce standard format
uses: golangci/golangci-lint-action@v5.0.0
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout 3m --enable=gofmt --verbose
- name: Test
run: go test --cover -v ./...
- name: Build
run: go build -v ./...