Skip to content

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

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

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

Workflow file for this run

name: PR Check
on:
pull_request:
branches:
- main
- staging
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
cache: true
go-version: 1.21.5
- name: Install dependencies
run: |
echo "deb http://th.archive.ubuntu.com/ubuntu noble main universe" | sudo tee -a /etc/apt/sources.list
go mod download
- name: Test
run: go test -v ./internal/...
- name: Build
run: go build cmd/api/main.go