Skip to content

Automatically build and check your R package with GitHub Actions

License

Notifications You must be signed in to change notification settings

Swechhya/R-actions

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

R package build and test action

This action is designed to automatically run build and check for R packages on their code with every commit.

Example Usage

To get this action running in your project, add the following config to .github/workflows/Rbuild.yml:

name: R Build and Checks
on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: R Build and Checks
      uses: Swechhya/[email protected]
      with:
        action: 'all'
        needsBioc: false
        buildSubDirectory: './'

The action property can be any one of:

  • build Only builds the package
  • all Runs build and checks the built package

The needsBioc property can be any one of:

  • true Installs bioconductor and dependencies
  • false Only installs CRAN dependencies