Skip to content

Bump github.com/emicklei/dot from 1.6.0 to 1.6.1 #75

Bump github.com/emicklei/dot from 1.6.0 to 1.6.1

Bump github.com/emicklei/dot from 1.6.0 to 1.6.1 #75

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: go test ./... -coverprofile cover.out -timeout 30m
env:
CGO_ENABLED: 0
GO111MODULE: on
GOOS: linux
GOARCH: amd64
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out