Skip to content

Update tests

Update tests #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
test:
strategy:
matrix:
go: ['1.20', '1.21']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v