This repository has been archived by the owner on May 21, 2024. It is now read-only.
Bump ubi8-minimal from 8.9-1137 to 8.9-1161 #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |