From b61c0e80dfaab64d2d547e3e20b979b46cb2997e Mon Sep 17 00:00:00 2001 From: Josiah Parry Date: Sun, 1 Sep 2024 09:00:22 -0700 Subject: [PATCH] add cran check workflow --- .github/workflows/cran-checks.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cran-checks.yaml diff --git a/.github/workflows/cran-checks.yaml b/.github/workflows/cran-checks.yaml new file mode 100644 index 0000000..4cf0188 --- /dev/null +++ b/.github/workflows/cran-checks.yaml @@ -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 + with: + pkg: b64 \ No newline at end of file