Skip to content

images: switch to ubi9 base #3

images: switch to ubi9 base

images: switch to ubi9 base #3

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
GO:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: gofmt -l .
run: files=$(gofmt -l .); if [[ -n "$files" ]]; then echo "$files"; exit 1; fi
- run: go vet ./...
- run: go test ./...
- run: go build -mod=readonly .