awl/.gitea/workflows/test.yaml
Sam Therapy dac53bd5bf
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Test / test (oldstable) (push) Successful in 4m50s
Test / test (stable) (push) Successful in 5m58s
ci: no fuzz, don't pin Go
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-11-07 22:14:21 +01:00

26 lines
480 B
YAML

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