Skip to content

Bump github.com/docker/docker #242

Bump github.com/docker/docker

Bump github.com/docker/docker #242

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22"]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: |
echo "Run Unit tests"
go test -v -coverprofile=coverage.txt -covermode=atomic ./...