Skip to content

Bump github.com/docker/docker from 28.4.0+incompatible to 28.5.1+incompatible in the all group #96

Bump github.com/docker/docker from 28.4.0+incompatible to 28.5.1+incompatible in the all group

Bump github.com/docker/docker from 28.4.0+incompatible to 28.5.1+incompatible in the all group #96

Workflow file for this run

# This workflow will build and test a Go application
name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Check format
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
exit 1
fi
- name: Build
run: go build
# - name: Test
# run: go test -v ./...