Skip to content

Commit

Permalink
ci: add cron to clippy-check and rust workflows
Browse files Browse the repository at this point in the history
This will help catch new clippy issues sooner than when there is fresh
development activity.
  • Loading branch information
cpu authored and chifflier committed Apr 4, 2024
1 parent 242fc26 commit e77fbc8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/clippy-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
on: push
on:
push:
pull_request:
schedule:
- cron: '0 18 * * *'

name: Clippy check
jobs:
clippy_check:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 18 * * *'

name: Continuous integration

Expand Down

0 comments on commit e77fbc8

Please sign in to comment.