Skip to content

Fix Up RHEL Builds #314

Fix Up RHEL Builds

Fix Up RHEL Builds #314

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-ci-${{ github.event.number || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: quay.io/projectquay/golang:1.23
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
e2e:
name: End-to-End test (UBI 10)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: registry.access.redhat.com/ubi10:latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: ${{ matrix.go }}
- name: Install Dependencies
run: dnf install -y make jq util-linux
- name: E2E Tests
run: make e2e