Skip to content

Bump github.com/vbauerster/mpb/v8 from 8.7.4 to 8.7.5 #115

Bump github.com/vbauerster/mpb/v8 from 8.7.4 to 8.7.5

Bump github.com/vbauerster/mpb/v8 from 8.7.4 to 8.7.5 #115

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- '.github/signatures/**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Setup nbd
run: sudo modprobe nbd
- name: Test
run: go test -exec sudo -v ./...
- name: Test with Race Conditions
run: go test -race -v $(go list ./... | grep -v expose)