feat(config): ipfs add
and Import
options for controling UnixFS DAG Width
#3824
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
push: | |
branches: | |
- 'master' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
go-lint: | |
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
TEST_DOCKER: 0 | |
TEST_FUSE: 0 | |
TEST_VERBOSE: 1 | |
TRAVIS: 1 | |
GIT_PAGER: cat | |
IPFS_CHECK_RCMGR_DEFAULTS: 1 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.24.x | |
- uses: actions/checkout@v4 | |
- run: make -O test_go_lint |