Skip to content

Commit

Permalink
minor #167 ci: Add a monthly schedule for the pipeline (theofidry)
Browse files Browse the repository at this point in the history
This PR was merged into the 0.4-dev branch.

Discussion
----------

ci: Add a monthly schedule for the pipeline

Commits
-------

e9e221d ci: Add a monthly schedule for the pipeline
  • Loading branch information
chalasr committed Oct 14, 2023
2 parents 6d32f38 + e9e221d commit cd33552
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "coding standards"

on: ["pull_request", "push"]
on:
pull_request: ~
push: ~
schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

jobs:
coding-standards:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "static analysis"

on: ["pull_request", "push"]
on:
pull_request: ~
push: ~
schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

jobs:
static-analysis:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "unit tests"

on: [ "pull_request", "push" ]
on:
pull_request: ~
push: ~
schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

jobs:
tests:
Expand Down

0 comments on commit cd33552

Please sign in to comment.