Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Bump ubi8-minimal from 8.9-1108.1706795067 to 8.9-1137 #133

Bump ubi8-minimal from 8.9-1108.1706795067 to 8.9-1137

Bump ubi8-minimal from 8.9-1108.1706795067 to 8.9-1137 #133

Workflow file for this run

name: Test Incoming Changes
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
name: Run Linter and Vet
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-latest, macos-14]
env:
SHELL: /bin/bash
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: 1.21.6
- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
- name: Check out code
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Run 'make vet'
run: make vet
- name: Install golangci-lint
run: make install-lint
- name: Run 'make lint'
run: make lint
- name: Run 'make test'
run: make test