Skip to content

refactor: Use "github.com/jedib0t/go-pretty/v6/table" #194

refactor: Use "github.com/jedib0t/go-pretty/v6/table"

refactor: Use "github.com/jedib0t/go-pretty/v6/table" #194

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: get dependencies
run: go get -v -t -d ./...
- name: testing
run: go test -shuffle on ./...