Skip to content

build(deps): bump github.com/docker/docker #485

build(deps): bump github.com/docker/docker

build(deps): bump github.com/docker/docker #485

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: make dep
- name: Build
run: make build
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: make dep
- name: Check for unused
run: make unused
- name: Test
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Check lints
run: sudo make lint