Renovate Bot
fd3ceeb066
All checks were successful
continuous-integration/drone/push Build is passing
25 lines
527 B
YAML
25 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
|