Skip to content

chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible #33

chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible

chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible #33

Workflow file for this run

name: Tests
on:
pull_request:
merge_group:
jobs:
tests:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build binaries
run: make build
- name: Run unit tests
run: make test
- name: Check with go vet
run: make vet