Skip to content

just a bunch of meta updates this time, LICENSE, Makefile, and README.md #56

just a bunch of meta updates this time, LICENSE, Makefile, and README.md

just a bunch of meta updates this time, LICENSE, Makefile, and README.md #56

Workflow file for this run

name: ci
on:
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./...