awl/.github/workflows/test.yaml
Renovate Bot 12863559c5
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update actions/checkout action to v4
2023-09-04 13:00:20 +00:00

26 lines
527 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
platform: [macos, windows]
goVer: ["1.20.x", "1.21.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@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Test
run: make test-ci