awl/.github/workflows/test.yaml
Renovate Bot fd3ceeb066
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update actions/setup-go action to v4
2023-03-28 20:18:02 +00: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@v4
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