awl/.github/workflows/test.yaml
Sam Therapy b8a2407169
All checks were successful
Test / test (oldstable) (push) Successful in 1m0s
Test / test (stable) (push) Successful in 39s
ci: Add Gitea Actions (#228)
Use Gitea Actions instead of Drone.

Reviewed-on: #228
2023-11-07 20:27:18 +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@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