Skip to content

Nightly

Nightly #15

Workflow file for this run

name: Nightly
on:
schedule:
# Run every Monday at 12 AM UTC
- cron: '0 0 * * 1'
workflow_dispatch:
inputs:
skip_coverage_annotation:
description: 'Skip coverage annotation'
required: false
default: true
type: boolean
permissions:
contents: read
checks: write
jobs:
test:
uses: ./.github/workflows/test.yml
with:
skip_coverage_annotation: ${{ github.event_name == 'schedule' || inputs.skip_coverage_annotation }}