rworkflows
Test, Document, Containerise, and Deploy R Packages
Reproducibility is essential to the progress of research, yet achieving it remains elusive even in computational fields. Continuous Integration (CI) platforms offer a powerful way to launch automated workflows to check and document code, but often require considerable time, effort, and technical expertise to setup. We therefore developed the rworkflows suite to make robust CI workflows easy and freely accessible to all R package developers. rworkflows consists of 1) a CRAN/Bioconductor-compatible R package template, 2) an R package to quickly implement a standardised workflow, and 3) a centrally maintained GitHub Action.
README
---
title: "`r read.dcf('DESCRIPTION', fields = 'Package')[1]`"
author: "`r rworkflows::use_badges()`"
date: "<h4>README updated: <i>`r format( Sys.Date(), '%b-%d-%Y')`</i></h4>"
output:
github_document
---
<!-- To modify Package/Title/Description/Authors fields, edit the DESCRIPTION file -->
```{r, echo=FALSE, include=FALSE}
pkg <- read.dcf("DESCRIPTION", fields = "Package")[1]
title <- read.dcf("DESCRIPTION", fields = "Title")[1]
description <- read.dcf("DESCRIPTION", fields = "Description")[1]
URL <- read.dcf('DESCRIPTION', fields = 'URL')[1]
owner <- tolower(strsplit(URL,"/")[[1]][4])
```
## ``r pkg``: `r title`
### `r description`
If you use ``r pkg``, please cite:
<!-- Modify this by editing the file: inst/CITATION -->
> `r utils::citation(pkg)$textVersion`
## Installation
```R
if(!require("remotes")) install.packages("remotes")
remotes::install_github("`r URL`")
library(`r pkg`)
```
## Documentation
### [Website](https://`r owner`.github.io/`r pkg`)
### [Get started](https://`r owner`.github.io/`r pkg`/articles/`r pkg`)
<br>
Versions across snapshots
| Version | Repository | File | Size |
|---|---|---|---|
1.0.11 |
rolling linux/jammy R-4.5 | rworkflows_1.0.11.tar.gz |
1.6 MiB |
1.0.11 |
rolling linux/noble R-4.5 | rworkflows_1.0.11.tar.gz |
1.6 MiB |
1.0.11 |
rolling source/ R- | rworkflows_1.0.11.tar.gz |
1.5 MiB |
1.0.11 |
latest linux/jammy R-4.5 | rworkflows_1.0.11.tar.gz |
1.6 MiB |
1.0.11 |
latest linux/noble R-4.5 | rworkflows_1.0.11.tar.gz |
1.6 MiB |
1.0.11 |
latest source/ R- | rworkflows_1.0.11.tar.gz |
1.5 MiB |
1.0.11 |
2026-04-26 source/ R- | rworkflows_1.0.11.tar.gz |
1.5 MiB |
1.0.11 |
2026-04-23 source/ R- | rworkflows_1.0.11.tar.gz |
1.5 MiB |
1.0.11 |
2026-04-09 windows/windows R-4.5 | rworkflows_1.0.11.zip |
1.6 MiB |
1.0.6 |
2025-04-20 source/ R- | rworkflows_1.0.6.tar.gz |
1.5 MiB |