Skip to content

Commit 5efc172

Browse files
Schedule nightly unit/gpu tests
Signed-off-by: Keval Morabia <[email protected]>
1 parent 4597fee commit 5efc172

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/code_quality.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Code Quality
33
on:
44
pull_request:
55
branches: [main, release/*]
6+
schedule:
7+
- cron: "0 0 * * *" # Nightly
68

79
# Cancel previous runs if new commit is pushed to the same PR
810
concurrency:

.github/workflows/gpu_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches: ["pull-request/[0-9]+"]
77
# NOTE: paths cannot be used since push happens to copied PR and only latest commit to PR is used
8+
schedule:
9+
- cron: "0 0 * * *" # Nightly
810

911
# Cancel previous runs if new commit is pushed to the same PR
1012
concurrency:

.github/workflows/pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [main, release/*]
66
push:
77
branches: [main, release/*]
8+
schedule:
9+
- cron: "0 0 * * *" # Nightly
810

911
# Cancel previous runs if new commit is pushed
1012
concurrency:

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ on:
2020
- "pyproject.toml"
2121
- "setup.py"
2222
- "tox.ini"
23+
schedule:
24+
- cron: "0 0 * * *" # Nightly
2325

2426
# Cancel previous runs if new commit is pushed
2527
concurrency:

0 commit comments

Comments
 (0)