Skip to content

On nightly

On nightly #46

Workflow file for this run

name: On nightly
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
nightly_tests:
uses: ./.github/workflows/build-and-test.yml
secrets: inherit
with:
test_mark: 'nightly'
test_full_model:
uses: ./.github/workflows/build-and-test.yml
secrets: inherit
needs: nightly_tests
if: always() # This ensures the job runs regardless of success or failure of `nightly_tests`
with:
test_mark: 'model_test'