Skip to content

chore(deps): update registry.access.redhat.com/ubi9/ubi docker tag to v9.7-1764163501 #1129

chore(deps): update registry.access.redhat.com/ubi9/ubi docker tag to v9.7-1764163501

chore(deps): update registry.access.redhat.com/ubi9/ubi docker tag to v9.7-1764163501 #1129

Workflow file for this run

name: pull request checks
on:
pull_request:
branches: ['*']
jobs:
build-test:
name: Build, lint, test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.24'
- name: Install make
run: sudo apt -y install make
- name: run build
run: make build && git diff --exit-code
- name: run unit tests
run: make test coverage-report
- name: check clean vendors
run: go mod vendor
- name: Report coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./cover.out
flags: unittests
fail_ci_if_error: false
verbose: true