Skip to content

Bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible #349

Bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible

Bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible #349

Workflow file for this run

name: Go unit tests
on:
pull_request:
paths:
- '**.go'
- go.mod
- go.sum
- Makefile
jobs:
unit-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Unit Tests
run: make unit-test