Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Trim some fat from README #15

Trim some fat from README

Trim some fat from README #15

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: ["1.15", "1.16", "1.17", "1.18beta1"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: |
go vet ./...
go test -num.fuzziter=1000000 ./...
go test ./...