Skip to content

Commit f1451d1

Browse files
authored
ci: run daily at midnight PST (#353)
If all dependencies of the build were pinned, then it probably wouldn't be necessary to regularly test the build and release process. Since we don't live in that world - e.g. github runner often changes its packages - we should build every day to get ahead of any issues.
1 parent 5af8c56 commit f1451d1

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.github/workflows/client.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on:
44
push:
55
branches: [ main ]
66
paths-ignore:
7-
- '**.md' #Do not need to run CI for markdown changes.
7+
- '**.md' # Do not need to run CI for markdown changes.
88
pull_request:
9-
branches: [ main, "feat/**" ]
9+
branches: [ "main", "feat/**" ]
1010
paths-ignore:
1111
- '**.md'
12+
schedule:
13+
# Run daily at midnight PST
14+
- cron: '0 8 * * *'
1215

1316
jobs:
1417
contract-tests:

.github/workflows/server-redis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on:
44
push:
55
branches: [ main ]
66
paths-ignore:
7-
- '**.md' #Do not need to run CI for markdown changes.
7+
- '**.md' # Do not need to run CI for markdown changes.
88
pull_request:
99
branches: [ "main", "feat/**" ]
1010
paths-ignore:
1111
- '**.md'
12+
schedule:
13+
# Run daily at midnight PST
14+
- cron: '0 8 * * *'
1215

1316
jobs:
1417
build-test-redis:

.github/workflows/server.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on:
44
push:
55
branches: [ main ]
66
paths-ignore:
7-
- '**.md' #Do not need to run CI for markdown changes.
7+
- '**.md' # Do not need to run CI for markdown changes.
88
pull_request:
99
branches: [ "main", "feat/**" ]
1010
paths-ignore:
1111
- '**.md'
12+
schedule:
13+
# Run daily at midnight PST
14+
- cron: '0 8 * * *'
1215

1316
jobs:
1417
contract-tests:

0 commit comments

Comments
 (0)