Skip to content

Merge pull request #2 from things-labs/dependabot/go_modules/gopkg.in… #87

Merge pull request #2 from things-labs/dependabot/go_modules/gopkg.in…

Merge pull request #2 from things-labs/dependabot/go_modules/gopkg.in… #87

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build on GO ${{matrix.go-version}}
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.15.x", "1.16.x"]
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@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Go test
run: go test -v -benchmem -test.bench=".*" -coverprofile=coverage.txt -covermode=atomic ./...