Skip to content

Adopt reusable workflow for Red Hat Community bundle creation #473

Adopt reusable workflow for Red Hat Community bundle creation

Adopt reusable workflow for Red Hat Community bundle creation #473

Workflow file for this run

name: Pre Submit
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- name: Build
run: make manager
- name: Test
run: make test