Skip to content

nightly tests

nightly tests #1119

Workflow file for this run

# This runs nightly tests once a day at 12:00 noon.
name: nightly tests
on:
schedule:
- cron: "00 12 * * *"
jobs:
nightly_test:
runs-on: charon-ci
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/actions/setup-go
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go test -v -timeout=90m -race github.com/obolnetwork/charon/testutil/integration -nightly