Skip to content

Incorporate CI and ARM feedback from azure-rest-api-specs to v2024-08-12-preview API #9530

Incorporate CI and ARM feedback from azure-rest-api-specs to v2024-08-12-preview API

Incorporate CI and ARM feedback from azure-rest-api-specs to v2024-08-12-preview API #9530

Workflow file for this run

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.13-1
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.13-1
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.13-1
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