awl/.github/workflows/test.yaml
Sam Therapy bdaefe815d
All checks were successful
continuous-integration/drone/push Build is passing
change spell
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-08-11 19:17:51 +02:00

26 lines
529 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
platform: [macos, windows]
goVer: [1.18, 1.19]
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.goVer }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Test
run: go test -race -v ./...