tier: az: Have an empty Endpoint by default (#298) #903
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: Go | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
build: | |
name: Lint checks Go ${{ matrix.go-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.22.x] | |
steps: | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Check lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.58 | |
- name: Regenerate, vet and test | |
run: | | |
go vet ./... | |
go install -v github.com/tinylib/msgp@latest | |
go install -v golang.org/x/tools/cmd/stringer@latest | |
export PATH=${PATH}:$(go env GOPATH)/bin | |
go generate ./... >/dev/null | |
(! git diff --name-only | grep '_gen.go$$') || (echo "Non-committed changes in auto-generated code is detected, please commit them to proceed." && false) | |
test: | |
name: Testing Go ${{ matrix.go-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.22.x] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }} | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Test on ${{ matrix.os }} | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
go test -v -race ./... | |
GOARCH=386 GOOS=linux go test -v ./... | |
- name: Test on ${{ matrix.os }} | |
if: matrix.os != 'ubuntu-latest' | |
run: | | |
go test -v -race ./... |