awl/.forgejo/workflows/test.yaml
Renovate Bot 675c9c9cdb
Some checks failed
Mirror Push / mirror (push) Failing after 6s
Test / test (oldstable) (push) Successful in 45s
Test / test (stable) (push) Successful in 36s
chore(deps): update actions/setup-go action to v5
2024-08-01 21:58:04 +00:00

25 lines
438 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
goVer: ["oldstable", "stable"]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.goVer }}
- name: Test
run: make test-ci