Skip to content

Merge pull request #27 from iishyfishyy/patch-1 #152

Merge pull request #27 from iishyfishyy/patch-1

Merge pull request #27 from iishyfishyy/patch-1 #152

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-2019 ]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Build
run: go build ./...
- name: Run Unit Tests
run: go test ./...