Skip to content

Bump github.com/schollz/progressbar/v3 from 3.16.1 to 3.17.0 #1390

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

Bump github.com/schollz/progressbar/v3 from 3.16.1 to 3.17.0 #1390

Workflow file for this run

on: [ push, pull_request ]
name: Build & Test
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependency libraries
run: |
sudo apt-get update
sudo apt-get install -y libgpgme-dev libdevmapper-dev build-essential pkg-config libbtrfs-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -tags integration