Skip to content

Merge pull request #96 from adrg/xdg-bin-home #63

Merge pull request #96 from adrg/xdg-bin-home

Merge pull request #96 from adrg/xdg-bin-home #63

Workflow file for this run

name: lint
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
lint:
strategy:
matrix:
go: [stable, oldstable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- name: Prepare checkout
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: golangci/[email protected]
with:
version: latest
args: --timeout=5m