Skip to content

build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.6.8 to 6.7.5 #759

build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.6.8 to 6.7.5

build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.6.8 to 6.7.5 #759

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [~1.23, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v5
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...