Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
---
name: reviewdog
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- edited
- reopened
- synchronize
push:

jobs:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
---
name: Test
on: # yamllint disable-line rule:truthy
# Run the tests on every push, and also at 3am every night
pull_request:
types:
- opened
- edited
- reopened
- synchronize
push:
# Run the tests at 3am every night
schedule:
- cron: '0 3 * * *' # * is a special character in YAML so you have to quote this string
env:
Expand Down
Loading