Skip to content

Nightly Tests

Nightly Tests #1263

Workflow file for this run

name: Nightly Tests
on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:
env:
GOPROXY: https://proxy.golang.org/
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
steps:
-
name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: ".go-version"
-
name: Go mod download
run: go mod download -x
-
name: Run long tests
run: go test -timeout=30m -tags=longtest ./...