Skip to content

Commit 1ec40fd

Browse files
[GitHub Actions] weekly overnight tests
1 parent 10c82ab commit 1ec40fd

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/CI-testing-C-method.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ on:
88
branches: main
99
paths: ["C-method/**", "tests/**", ".github/workflows/**"]
1010

11+
schedule:
12+
# Overnight: run tests every Thursday at 20:00 UTC
13+
# cron <minute> <hour> <day-of-month> <day-of-week (sunday=0)>
14+
- cron: "0 20 * * 4"
15+
1116
jobs:
1217
test:
1318
runs-on: ubuntu-latest

.github/workflows/CI-testing-Rust-method.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
branches: main
99
paths: ["rust-method/**", "tests/**", ".github/workflows/**"]
1010

11+
schedule:
12+
# Overnight: run tests every Thursday at 20:15 UTC
13+
# cron <minute> <hour> <day-of-month> <day-of-week (sunday=0)>
14+
- cron: "15 20 * * 4"
1115

1216
jobs:
1317
tests:

0 commit comments

Comments
 (0)