Skip to content

docs: update installation instructions with Homebrew and package mana… #190

docs: update installation instructions with Homebrew and package mana…

docs: update installation instructions with Homebrew and package mana… #190

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [ main ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Cache Go
uses: actions/cache@v5
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --timeout=5m
- name: Test
run: go test -race ./... -cover
- name: Build
run: go build -v ./cmd/k10s