Skip to content

Bump github.com/olekukonko/tablewriter from 0.0.5 to 1.0.7 #14

Bump github.com/olekukonko/tablewriter from 0.0.5 to 1.0.7

Bump github.com/olekukonko/tablewriter from 0.0.5 to 1.0.7 #14

Workflow file for this run

name: Test
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Display Go version
run: go version
- name: Run make fmt
run: make fmt
- name: Run make mocks
run: make mocks
- name: Run make build
run: make build
- name: Run make test
run: make test