Skip to content

Bump github.com/docker/docker from 0.7.3-0.20190506211059-b20a14b54661 to 1.6.1 #40

Bump github.com/docker/docker from 0.7.3-0.20190506211059-b20a14b54661 to 1.6.1

Bump github.com/docker/docker from 0.7.3-0.20190506211059-b20a14b54661 to 1.6.1 #40

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt
flags: unittests