Skip to content

bump core to 2.3.1 (#96) #435

bump core to 2.3.1 (#96)

bump core to 2.3.1 (#96) #435

Workflow file for this run

name: test
on:
push:
branches:
- main
- develop
pull_request:
jobs:
test:
strategy:
matrix:
containers:
- 1.18.10-bullseye
- 1.19.13-bullseye
- 1.20.13-bookworm
- 1.21.6-bookworm
runs-on: ubuntu-latest
container: golang:${{ matrix.containers }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
/go/pkg/mod
key: ${{ runner.os }}-${{ matrix.containers }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-${{ matrix.containers }}-go-
- name: Unit Tests
env:
IPFS_URL: ${{secrets.IPFS_URL }}
run: go test -race -timeout=180s ./...