Skip to content

feat(cluster)!: use min_nodes instead of node_count #318

feat(cluster)!: use min_nodes instead of node_count

feat(cluster)!: use min_nodes instead of node_count #318

Workflow file for this run

name: Go
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
name: lint
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- run: make build
- uses: golangci/golangci-lint-action@v9
with:
version: v2.7
install-only: true
- run: make lint
test-and-build:
strategy:
matrix:
go: [ "stable" ]
os: [ macos-latest, windows-latest, ubuntu-latest ]
name: test-and-build
needs: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- run: |
make build
make test