Files
hamview/.gitea/workflows/dev.yaml
maze 2228a57d1c
Some checks failed
Run tests / test (1.25) (push) Failing after 59s
Run tests / test (stable) (push) Failing after 29s
Use magic labels
2026-02-22 20:48:17 +01:00

24 lines
444 B
YAML

name: Run tests
on:
push:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
go: [stable, 1.25]
runs-on: ubuntu-latest
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