mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-13 10:12:57 -05:00
* fix(deps): update module github.com/docker/docker to v20.10.5 * fix(deps): update module github.com/docker/docker to v20.10.5 * chore: bump acc test docker version * chore(build): reorder goproxies Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Manuel Vogel <mavogel@posteo.de>
30 lines
558 B
YAML
30 lines
558 B
YAML
name: Unit Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "release/**"
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
paths:
|
|
- '**.go'
|
|
- go.mod
|
|
- '.github/workflows/**'
|
|
|
|
env:
|
|
GOPROXY: https://proxy.golang.org,https://gocenter.io,direct
|
|
|
|
jobs:
|
|
unit-test:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.16'
|
|
- run: cat /etc/issue
|
|
- run: bash scripts/gogetcookie.sh
|
|
- run: make vet
|
|
- run: make test
|
|
|
|
|