Skip to content

Commit fb36e28

Browse files
committed
fix: add a cron check to catch upstream breaks
This library will probably go "cold" soon since it is feature complete, so the CI pipe won't be triggered often. But would like to be alerted to breaks.
1 parent 5b3bcdf commit fb36e28

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/weekly-check.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Attempt to detect any upcoming breaking changes if CI hasn't been run in awhile.
2+
name: Weekly Check
3+
4+
on:
5+
# Allows manual triggering.
6+
workflow_dispatch:
7+
schedule:
8+
# Run at midnight on Sundays.
9+
- cron: "0 0 * * 0"
10+
11+
jobs:
12+
sync:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: extractions/setup-just@v3
17+
- uses: actions-rust-lang/setup-rust-toolchain@v1
18+
- run: just check

0 commit comments

Comments
 (0)