Skip to content

build(deps): bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible #5

build(deps): bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible

build(deps): bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible #5

Workflow file for this run

name: Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Test
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Build
run: go build -v ./...
- name: coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
fail_ci_if_error: false # optional (default = false)
verbose: false # optional (default = false)