drawio-export/.gitea/workflows/golangci-lint.yaml
Алексей Бадяев 2366f2a2c7
Some checks failed
build / build (push) Failing after 29s
build / build_windows (push) Successful in 33s
golangci-lint / lint (stable, ubuntu-latest) (push) Failing after 33s
golangci-lint / lint (stable, windows-latest) (push) Failing after 48s
fixed workflow
2024-10-17 23:33:04 +07:00

23 lines
522 B
YAML

name: golangci-lint
on: push
jobs:
lint:
strategy:
matrix:
go: [stable]
os: [ubuntu-latest, windows-latest]
name: lint
runs-on: ${{ matrix.os }}
steps:
- name: check-out
uses: https://gitea.com/actions/checkout@v4
- name: set-up go
uses: https://gitea.com/actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: lint
uses: https://github.com/golangci/golangci-lint-action@v6
with:
version: v1.60