Skip to content

Seed the gatekeeper-operator FBC #13

Seed the gatekeeper-operator FBC

Seed the gatekeeper-operator FBC #13

Workflow file for this run

name: Preflight Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Image build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install OPM
run: |
make opm
- name: Validate catalog
run: |
make validate-catalog
- name: Build and verify image
run: |
make build-image
make run-image &
pid=$!
make test-image
make stop-image
wait ${pid}