Skip to content

Introduce Masterminds/semver #859

Introduce Masterminds/semver

Introduce Masterminds/semver #859

Workflow file for this run

name: e2e
on:
workflow_dispatch:
pull_request:
merge_group:
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
functionalities: fixes