Skip to content

Bump github.com/docker/docker from 20.10.21+incompatible to 20.10.24+incompatible #682

Bump github.com/docker/docker from 20.10.21+incompatible to 20.10.24+incompatible

Bump github.com/docker/docker from 20.10.21+incompatible to 20.10.24+incompatible #682

Workflow file for this run

name: e2e
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
e2e-kind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run e2e tests
run: |
# By default make stops building on first non-zero exit code which
# in case of E2E tests will mean that code coverage will only be
# collected on successful runs. We want to collect coverage even
# after failing tests.
# With -k flag make will continue the build, but will return non-zero
# exit code in case of any errors.
make -k e2e
- uses: codecov/codecov-action@v3
with:
files: e2e-cover.out
flags: e2e
fail_ci_if_error: true
functionalities: fixes