Files
hamview/.gitea/workflows/dev.yaml
maze 6f849d799e
Some checks failed
Run tests / test (1.25) (push) Failing after 31s
Run tests / test (stable) (push) Failing after 2s
Switch target
2026-02-22 20:30:40 +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@v5
- 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