Skip to content

Update golangci t0 1.61.0 #2797

Update golangci t0 1.61.0

Update golangci t0 1.61.0 #2797

Workflow file for this run

name: Run 'make check' on Windows
on:
push:
branches:
- "main"
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-2022
go:
- '1.22'
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Disable gofmt/goimports linters on Windows
run: sed -i "/gofmt/d" .golangci.yml && sed -i "/goimports/d" .golangci.yml
shell: bash
- name: make check
run: make check