Skip to content

deps(deps): bump github.com/ipfs/boxo from 0.32.0 to 0.34.0 #627

deps(deps): bump github.com/ipfs/boxo from 0.32.0 to 0.34.0

deps(deps): bump github.com/ipfs/boxo from 0.32.0 to 0.34.0 #627

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
actions: read
checks: write
# Define timeout for the entire workflow to prevent hanging jobs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
static-analysis:
name: Analyze
uses: ./.github/workflows/_static-analysis.yml
with:
go_version_file: go.work
golangci_lint_version: v1.64.5
unit-tests:
name: Unit Tests
uses: ./.github/workflows/_test.yml
with:
test_name: unit-tests
test_args: "-tags=unit"
integration-tests:
name: Integration Tests
uses: ./.github/workflows/_test.yml
with:
test_name: integration-tests
test_args: "-tags=integration"
install_ipfs: true
container-tests:
name: Container Tests
uses: ./.github/workflows/_test_container.yml
with:
test_name: container-tests
test_working_dir: "test_integration"
build_mode: "make"
binary_output_path: "common_assets/bacalhau_bin"
combined-coverage:
name: Coverage
needs: [unit-tests, integration-tests]
uses: ./.github/workflows/_test_coverage.yml
with:
coverage_reports: '["unit-tests", "integration-tests"]'
output_name: "pr-combined"
retention_days: 30