Skip to content

Commit

Permalink
test(package): #567 add RMI actions
Browse files Browse the repository at this point in the history
Closes: #567
  • Loading branch information
AlexAxthelm committed Jun 10, 2024
1 parent 815ba86 commit fe5cd32
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/R.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
# This example file will enable R language checks on push or PR to the main
# branch.
# It will also run the checks every weeknight at midnight UTC
#
# Note the @main in `uses:` on the last line. This will call the latest version
# of the workflow from the `main` brnach in the RMI-PACTA/actions repo. You can
# also specify a tag from that repo, or a commit SHA to pin action versions.
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:

name: R

jobs:
R-package:
name: R Package Checks
uses: RMI-PACTA/actions/.github/workflows/R.yml@main

dev-r-cmd-check:
name: R CMD Check (dev versions)
uses: RMI-PACTA/actions/.github/workflows/R-CMD-check.yml@main
with:
upgrade-packages: 'TRUE'
cache-version: 'dev'
remotes: |
RMI-PACTA/r2dii.analysis
RMI-PACTA/r2dii.data
RMI-PACTA/r2dii.match

0 comments on commit fe5cd32

Please sign in to comment.