Skip to content

test

test #18

Workflow file for this run

name: test
on:
push:
branches:
- main
schedule:
- cron: '0 13 2 * *'
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
runs-on: ${{ matrix.os }}
name: test on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Test
run: go test -v ./...