Skip to content

Bump github.com/dustin/go-humanize from 0.0.0-20151125214831-8929fe90cee4 to 1.0.1 #130

Bump github.com/dustin/go-humanize from 0.0.0-20151125214831-8929fe90cee4 to 1.0.1

Bump github.com/dustin/go-humanize from 0.0.0-20151125214831-8929fe90cee4 to 1.0.1 #130

Workflow file for this run

---
name: build
'on':
push:
branches:
- 'main'
- 'release/*'
tags:
- 'v*'
pull_request:
env:
GOARCH: amd64
CGO_ENABLED: 0
GOOS: linux
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ["1.22", "1.23", "1.24"]
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v -ldflags "-s -w" ./cmds/docker-distribution-pruner
- name: Test
run: go test ./...
- name: static-analysis
run: _support/go-fmt-check.sh