Skip to content

chore(deps): bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible in /examples in the go_modules group #94

chore(deps): bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible in /examples in the go_modules group

chore(deps): bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible in /examples in the go_modules group #94

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
go-version: [1.21.x, 1.22.x]
include:
- go-version: 1.22.x
upload-coverage: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
with:
go-version: ${{ matrix.go-version }}
- name: Build
shell: bash
run: make build
- name: Test and Coverage
shell: bash
env:
UPLOAD_COVERAGE: ${{ matrix.upload-coverage }}
COVERPROFILE: ./cover.out
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: make test