Skip to content

Revert "REDHAT DOWNSTREAM ONLY: revert image name changes" #1

Revert "REDHAT DOWNSTREAM ONLY: revert image name changes"

Revert "REDHAT DOWNSTREAM ONLY: revert image name changes" #1

Workflow file for this run

name: Validate
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.23.x] # Use valid versions
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependencies
run: go mod tidy && go mod download
- name: Run vet
run: make vet
- name: Run fmt
run: make fmt