Skip to content

Bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible #29

Bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible

Bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible #29

Workflow file for this run

name: PR Check
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build (Linux)
run: make build
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Unit Test
run: make test
lint:
name: Go Lint
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Golang Style and Lint Check
run: make check