awl/.gitea/workflows/test.yaml
Sam Therapy 914d5dc71d
All checks were successful
continuous-integration/drone/push Build is passing
Test / test (1.20.x) (push) Successful in 8m29s
Test / test (1.21.x) (push) Successful in 11m10s
ci: Add Gitea Actions
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-11-07 22:01:18 +01:00

29 lines
523 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
goVer: ["1.20.x", "1.21.x"]
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
- name: Fuzz
run: make fuzz-ci