Files
hamview/.gitea/workflows/dev.yaml
maze 2e5cc9f6aa
Some checks failed
Run tests / test (1.25) (push) Failing after 7s
Run tests / test (stable) (push) Failing after 2s
checkout v6
2026-02-22 20:45:59 +01:00

24 lines
442 B
YAML

name: Run tests
on:
push:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
go: [stable, 1.25]
runs-on: linux-amd64
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
go-version: ${{ matrix.go }}
version: v2.6