Skip to content

chore(deps): bump golang.org/x/sys from 0.25.0 to 0.26.0 in the all group #104

chore(deps): bump golang.org/x/sys from 0.25.0 to 0.26.0 in the all group

chore(deps): bump golang.org/x/sys from 0.25.0 to 0.26.0 in the all group #104

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
golangci-lint:
name: Linting
strategy:
matrix:
go-version: [ stable, oldstable ]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
GO_VERSION: stable
GOLANGCI_LINT_VERSION: v1.60
CGO_ENABLED: 0
runs-on: ${{ matrix.os }}
steps:
- if: ${{ matrix.os == 'windows-latest' }} # https://github.com/actions/checkout/issues/135
run: |
git config --global core.eol lf
git config --global core.autocrlf input
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}