Skip to content

Merge pull request #37 from alingse-forks/fix-copyandpaste #10

Merge pull request #37 from alingse-forks/fix-copyandpaste

Merge pull request #37 from alingse-forks/fix-copyandpaste #10

Workflow file for this run

name: Go
on: [push]
jobs:
test:
strategy:
matrix:
go:
- 1.13
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build & Test
run: |
make test
mkdir ~/bin
GOPATH=~/bin make install