Skip to content

Merge branch 'legacy' of github.com:iotaledger/hornet into develop-le… #3268

Merge branch 'legacy' of github.com:iotaledger/hornet into develop-le…

Merge branch 'legacy' of github.com:iotaledger/hornet into develop-le… #3268

Workflow file for this run

name: Test HORNET
on:
push:
branches:
- legacy
- develop-legacy
pull_request:
jobs:
test:
name: Test HORNET
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.15.5
id: go
- name: Print Go version
run: go version
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test HORNET
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 3
command: go test `go list ./... | grep -v integration-tests | grep -v whiteflag`