Skip to content

Commit

Permalink
feat(ci): Run once a week
Browse files Browse the repository at this point in the history
So CI backend changes don't sneak up on us next time we want to actually do something
  • Loading branch information
RichieSams committed Oct 30, 2023
1 parent 711f05e commit 3be9894
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Continuous Testing

on:
# Run once a week, so we CI backend updates don't sneak up on us
schedule:
- cron: "0 13 * * SUN"

jobs:
test:
uses: ./.github/workflows/test.yaml
10 changes: 10 additions & 0 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Commit Testing

on:
push:
branches-ignore:
- master

jobs:
call-test:
uses: ./.github/workflows/test.yaml
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Test

on:
push:
workflow_call:

jobs:
linux:
Expand Down

0 comments on commit 3be9894

Please sign in to comment.