Skip to content

Nightly Race Check

Nightly Race Check #62

Workflow file for this run

name: Nightly Race Check
on:
schedule:
- cron: "0 2 * * *"
workflow_dispatch:
jobs:
race-full:
runs-on: self-hosted
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Prepare web/dist placeholder for go:embed
run: mkdir -p web/dist && touch web/dist/.gitkeep
- name: go test -race
run: go test -race ./...
env:
CGO_ENABLED: "1"