gateway: add Content-Location for non-default response formats #946
Workflow file for this run
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: Gateway Sharness | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: ['gateway/**'] | |
push: | |
branches: ['main'] | |
paths: ['gateway/**'] | |
jobs: | |
sharness: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- name: Checkout boxo | |
uses: actions/checkout@v3 | |
with: | |
path: boxo | |
- name: Checkout Kubo | |
uses: actions/checkout@v3 | |
with: | |
repository: ipfs/kubo | |
path: kubo | |
- name: Install Missing Tools | |
run: sudo apt install -y socat net-tools fish libxml2-utils | |
- name: Replace boxo in Kubo go.mod | |
run: | | |
go mod edit -replace=github.com/ipfs/boxo=../boxo | |
go mod tidy | |
cat go.mod | |
working-directory: kubo | |
- name: Install sharness dependencies | |
run: make test_sharness_deps | |
working-directory: kubo | |
- name: Run Kubo Sharness Tests | |
run: find . -maxdepth 1 -name "*gateway*.sh" -print0 | xargs -0 -I {} bash -c "echo {}; {}" | |
working-directory: kubo/test/sharness | |
- name: Run Kubo CLI Tests | |
run: go test -run=Gateway . | |
working-directory: kubo/test/cli |