Skip to content

build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.5.9 to 6.6.0 #483

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

build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.5.9 to 6.6.0 #483

Workflow file for this run

name: Go Quality Checks
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Install Dependencies
run: |
go version
go install honnef.co/go/tools/cmd/staticcheck@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
- name: Test
run: |
go test -v -coverprofile=coverage.out ./...
go tool cover -func=coverage.out
- name: CodeCov
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: go build
- name: Vet
run: go vet -v
# -
# name: staticcheck
# run: staticcheck -f stylish -checks all ./...
- name: gocyclo
run: gocyclo .