name: Run nightly tests on: schedule: - cron: '30 14 * * *' # Every day at midnight UTC push: branches: - main jobs: run-tests: runs-on: [ubuntu-latest, cloud] steps: - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 with: go-version: '1.23' - name: Test working-directory: ./src run: go test -v --short ./...