Skip to content

Commit

Permalink
Merge pull request #38 from veewee/cron
Browse files Browse the repository at this point in the history
Enable cron checks
  • Loading branch information
veewee authored Sep 2, 2022
2 parents 72042d3 + c0d4fc8 commit 818acdd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/analyzers.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Analyzers

on: [push, pull_request]
on:
pull_request: ~
push: ~
schedule:
- cron: '0 9 * * 5'

jobs:
run:
runs-on: ${{ matrix.operating-system }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Tests

on: [push, pull_request]
on:
pull_request: ~
push: ~
schedule:
- cron: '0 9 * * 5'

jobs:
run:
runs-on: ${{ matrix.operating-system }}
Expand Down

0 comments on commit 818acdd

Please sign in to comment.