Skip to content

fix(deps): update module github.com/ipfs/go-block-format to v0.2.4 #82

fix(deps): update module github.com/ipfs/go-block-format to v0.2.4

fix(deps): update module github.com/ipfs/go-block-format to v0.2.4 #82

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Download Dependencies
run: go mod download
- name: Check Formatting
shell: bash
run: |
files="$(gofmt -l .)"
if [ -n "$files" ]; then
echo "These files are not formatted with gofmt:"
echo "$files"
exit 1
fi
- name: Run Vet
run: go vet ./...
- name: Run Tests
run: go test ./...