awl/.github/workflows/test.yaml
Renovate Bot e0b14b8b00
All checks were successful
Mirror Push / mirror (push) Successful in 8s
Test / test (stable) (push) Successful in 32s
Test / test (oldstable) (push) Successful in 40s
chore(deps): update actions/setup-go action to v5
2023-12-06 16:00:23 +00:00

26 lines
530 B
YAML

name: Test
on: push
jobs:
test:
strategy:
fail-fast: true
matrix:
platform: [macos, windows]
goVer: ["oldstable", "stable"]
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
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