Skip to content

Bump github.com/docker/docker from 0.0.0-20180805161158-f57f260b49b6 to 20.10.24+incompatible #59

Bump github.com/docker/docker from 0.0.0-20180805161158-f57f260b49b6 to 20.10.24+incompatible

Bump github.com/docker/docker from 0.0.0-20180805161158-f57f260b49b6 to 20.10.24+incompatible #59

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.30
-
name: Check GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: check
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.16' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go test -v ./...