Skip to content

Bump github.com/ipfs/boxo from 0.8.1 to 0.15.0 #87

Bump github.com/ipfs/boxo from 0.8.1 to 0.15.0

Bump github.com/ipfs/boxo from 0.8.1 to 0.15.0 #87

Workflow file for this run

name: Testing
on:
push:
branches:
- "*"
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/testing.yml"
- "Makefile"
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/testing.yml"
- "Makefile"
workflow_dispatch:
permissions: write-all
jobs:
test:
name: Testing
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ "1.19", "1.20" ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Set up IPFS
uses: ibnesayeed/setup-ipfs@master
with:
run_daemon: true
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache go module
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: |
make test