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

Merge pull request #2 from matt-FFFFFF/patch-2 #7

Merge pull request #2 from matt-FFFFFF/patch-2

Merge pull request #2 from matt-FFFFFF/patch-2 #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.14"
- "1.15"
- "1.16"
steps:
- name: Setup
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -cover