Skip to content

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.1+incompatible #57

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

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.1+incompatible #57

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@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
check-latest: true
cache: true
- name: Build
run: go build -v app.go
# - name: Test
# run: go test -v ./...