Bump github.com/multiformats/go-multiaddr from 0.11.0 to 0.12.0 #3342
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: Test HORNET | |
on: | |
pull_request: | |
paths-ignore: | |
- 'documentation/**' | |
- 'nfpm/**' | |
- 'private_tangle/**' | |
- 'scripts/**' | |
- 'tools/**' | |
jobs: | |
test: | |
name: Test HORNET | |
runs-on: self-hosted | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Print Go version | |
run: go version | |
- name: Install Build Essential | |
run: sudo apt update && sudo apt install build-essential -y | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Test HORNET | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 3 | |
command: go test `go list ./... | grep -v -e integration-tests` |