Remove podman network causing outbound latency (#3865) #9278
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: ci-go | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
ci-from-docker: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.access.redhat.com/ubi8/go-toolset:1.21.11-1.1720406008 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Add GOBIN to PATH | |
run: | | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- name: Build all | |
run: | | |
make build-all | |
- name: Run unit tests | |
run: | | |
make unit-test-go | |
vendor-check: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.access.redhat.com/ubi8/go-toolset:1.21.11-1.1720406008 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Add GOBIN to PATH | |
run: | | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- run: | | |
make go-verify | |
hack/ci-utils/isClean.sh | |
generate-check: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.access.redhat.com/ubi8/go-toolset:1.21.11-1.1720406008 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Add GOBIN to PATH | |
run: | | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- name: Run make generate | |
run: | | |
make generate | |
hack/ci-utils/isClean.sh |