Skip to content

v0.0.9

v0.0.9 #61

Workflow file for this run

name: Test
on: [push, pull_request]
defaults:
run:
shell: bash
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: ['1.18.x', '1.19.x', '1.20.x']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test code
run: go test -v ./...