Skip to content

Commit

Permalink
add cran check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhsparks committed Sep 1, 2024
1 parent 5ba5dc9 commit 5e0d860
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cran-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check CRAN status

on:
schedule:
# Runs daily at 4:00 PM UTC (9:00 AM PST)
- cron: '0 16 * * *'
# allows for manually running of the check
workflow_dispatch:

jobs:
check_cran_status:
runs-on: ubuntu-latest

steps:
- name: Get CRAN checks
uses: flrsh-dev/cran-checks/check-pkg@main
with:
pkg: YOUR-PKG-NAME

0 comments on commit 5e0d860

Please sign in to comment.