Skip to content

Bump github.com/docker/docker from 27.3.1+incompatible to 27.4.1+incompatible #26

Bump github.com/docker/docker from 27.3.1+incompatible to 27.4.1+incompatible

Bump github.com/docker/docker from 27.3.1+incompatible to 27.4.1+incompatible #26

Workflow file for this run

name: Go Test
on:
pull_request:
branches:
- main
- release/*
push:
branches:
- main
- release/*
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
cache-dependency-path: "**/*.sum"
- name: Install dependencies
run: go mod download
- name: Test with Go
run: go test ./... -v