Skip to content

Commit b61c0e8

Browse files
committed
add cran check workflow
1 parent 6c89e6f commit b61c0e8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/cran-checks.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Check CRAN status
2+
3+
on:
4+
schedule:
5+
# Runs daily at 4:00 PM UTC (9:00 AM PST)
6+
- cron: '0 16 * * *'
7+
# allows for manually running of the check
8+
workflow_dispatch:
9+
10+
jobs:
11+
check_cran_status:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Get CRAN checks
16+
uses: flrsh-dev/cran-checks/check-pkg
17+
with:
18+
pkg: b64

0 commit comments

Comments
 (0)