Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Update README

Update README #14

Workflow file for this run

on: [push]
name: Golang Tests
jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Vet
run: go vet ./...
- name: Test
run: make test
- name: Build
run: make build