Skip to content

feat(go-client): expand SubnetIPAddress model with GKE and custom res… #20

feat(go-client): expand SubnetIPAddress model with GKE and custom res…

feat(go-client): expand SubnetIPAddress model with GKE and custom res… #20

Workflow file for this run

---
name: main
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest-8core
strategy:
fail-fast: false
matrix:
go: ["1.24"]
steps:
- name: Checkout
uses: actions/checkout@v4.1.4
- name: Go installation
uses: actions/setup-go@v5.0.1
with:
go-version: ${{ matrix.go }}
- name: Go dependencies installation
run: go get -d ./...
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...