Skip to content

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.9 #130

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.9

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.9 #130

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
- "zmoog/**"
jobs:
lint:
name: Lint files
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v2
with:
go-version: '1.25.3'
- name: golangci-lint
uses: golangci/golangci-lint-action@v2.5.2
with:
version: 'latest'
test:
name: Run tests
runs-on: 'ubuntu-latest'
needs: lint
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v2
with:
go-version: '1.25.3'
- run: make test
build:
name: Build binaries
runs-on: 'ubuntu-latest'
needs: test
strategy:
matrix:
goosarch:
- 'darwin/amd64'
- 'darwin/arm64'
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v2
with:
go-version: '1.25.3'
- run: make build