awl/.github/workflows/test.yaml
Sam Therapy b15584f436
All checks were successful
continuous-integration/drone/push Build is passing
fix(ci): I hate you, GHA
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-02-17 22:44:21 +01:00

26 lines
527 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
platform: [macos, windows]
goVer: ["1.19.x", "1.20.x"]
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: make test-ci