Bump ubi9/ubi from 4495380
to d342aa8
#555
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: | |
permissions: | |
contents: read | |
jobs: | |
basic-check: | |
name: Build, Lint, Vet | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ github.sha }} | |
- name: Set up Go | |
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
with: | |
go-version-file: go.mod | |
- name: Disable default go problem matcher | |
run: echo "::remove-matcher owner=go::" | |
- name: make build-oct | |
run: make build-oct | |
- name: Golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.64 | |
args: --timeout 10m0s | |
- name: make vet | |
run: make vet | |
- name: Run endpoint verification script | |
run: | | |
./scripts/curl-endpoints.sh |