Skip to content

Bump github.com/minio/minio-go/v7 from 7.0.74 to 7.0.75 #117

Bump github.com/minio/minio-go/v7 from 7.0.74 to 7.0.75

Bump github.com/minio/minio-go/v7 from 7.0.74 to 7.0.75 #117

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)