Skip to content

Commit

Permalink
Add cron job
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Jul 17, 2023
1 parent f766b27 commit 0ca64b9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Linux build

on: [push, pull_request, workflow_dispatch]
on:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '01 01 * * 6' # Run every Saturday

jobs:
build:
Expand All @@ -10,6 +15,7 @@ jobs:
strategy:
matrix:
perl:
# - 'develop'
- '5.38'
- '5.36'
- '5.34'
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Macos build

on: [push, pull_request, workflow_dispatch]
on:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '01 01 * * 6' # Run every Saturday

jobs:
build:
Expand All @@ -10,6 +15,7 @@ jobs:
strategy:
matrix:
perl:
# - 'develop'
- '5.38'
- '5.36'
- '5.34'
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Windows build

on: [push, pull_request, workflow_dispatch]
on:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '01 01 * * 6' # Run every Saturday

jobs:
build:
Expand All @@ -10,6 +15,7 @@ jobs:
strategy:
matrix:
perl:
# - 'develop'
- '5.38'
- '5.36'
- '5.34'
Expand Down

0 comments on commit 0ca64b9

Please sign in to comment.