Skip to content

Bump github.com/smartystreets/goconvey from 1.7.2 to 1.8.1 #14

Bump github.com/smartystreets/goconvey from 1.7.2 to 1.8.1

Bump github.com/smartystreets/goconvey from 1.7.2 to 1.8.1 #14

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download dependencies
run: |
go mod download
- name: Test
run: go test -bench=. -run=. -v