Skip to content

Bump github.com/schollz/progressbar/v3 from 3.17.0 to 3.17.1 #53

Bump github.com/schollz/progressbar/v3 from 3.17.0 to 3.17.1

Bump github.com/schollz/progressbar/v3 from 3.17.0 to 3.17.1 #53

Workflow file for this run

name: Test GoLang Project
on:
push:
branches:
- main
- dev
pull_request:
branches:
- '*'
permissions:
contents: read
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install Dependencies
run: go mod download
- name: Build Project
run: make build
- name: Test with the Go CLI
run: make test