Skip to content

🌱 parameterizes the e2e target and pins opm images #4308

🌱 parameterizes the e2e target and pins opm images

🌱 parameterizes the e2e target and pins opm images #4308

Workflow file for this run

name: verify
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
merge_group:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
# Note(tflannag): We need to explicitly setup the GOPATH as the generate-internal-groups.sh
# codegen script still relies on $GOPATH being set and will return an error otherwise.
# The setup-go action does not set this value for us: https://github.com/actions/setup-go/issues/14.
- name: Run the verify target
run: GOPATH=$(go env GOPATH) make verify