Thanks for your interest in contributing to workflowr. Here are some guidelines to help make it easier to merge your Pull Request:
- For potentially large changes, please open an Issue first to discuss
- Please follow the Hadley style guide
- Please run the file scripts/contribute.R to check your changes
- (Optional) Run
devtools::test()to run the tests - (Optional) Add new test(s) in
tests/testthat/
If you're new to submitting Pull Requests, please read the section Contribute to other projects in the tutorial A quick introduction to version control with Git and GitHub.
To contribute to workflowr, follow these steps to setup a development environment:
-
Fork GitHub repository and clone to your local machine
-
Install dependencies
# Install package dependencies if (!requireNamespace("remotes", quietly = TRUE)) install.packages("remotes") remotes::install_deps(dependencies = TRUE) # Install developlment-only dependencies install.packages("devtools") # Install local copy of workflowr devtools::install()
For the most part, I try to follow the guidelines from R packages by Hadley Wickham. The unit tests are performed with testthat, the documentation is built with roxygen2, and the online package documentation is created with pkgdown.
Minimal continuous integration testing is performed by GitHub Actions for each push to the repository. Extensive continuous integration testing is performed at scheduled intervals in workflowr-pkg-tests. Code coverage is calculated with covr and Codecov.
The template files used by wflow_start() to populate a new project are defined
in the list templates in the file R/infrastructure.R. The RStudio project
template is configured by inst/rstudio/templates/project/wflow_start.dcf.
The repository contains the files LICENSE and LICENSE.md to both adhere to
R package conventions for defining the license and also to
make the license clear in a more conventional manner (suggestions for
improvement welcome). The directory scripts/ contains convenience scripts for
maintaining the R package. The remaining directories are standard for R packages
as described in the manual Writing R Extensions.
Convenience scripts for maintaining the package are located in scripts/. These
are not included in the package tarball for distribution. They are all intended
to be executed from the root directory of the package. The convenience scripts
include:
build.shrunsR CMD buildandR CMD checkbump-version.Rbumps the version across all the necessary package filescontribute.Rperforms some basic checks that should be run before contributing a Pull Requestdocument.Rregenerates the documentationgather-dependencies.Rextracts the dependencies fromDESCRIPTIONto create the vectordependenciesinR/zzz.R(which is used to confirm that all the packages that workflowr needs are properly installed)sed.shperforms search/replace for all R files in the package
-
Bump version with scripts/bump-version.R
-
Update NEWS.md: Check
git logand make sure to reference GitHub Issues/PRs -
Run scripts/document.R to update Rd files, install the package locally, and build the online documentation with pkgdown
-
Run scripts/build.sh to confirm tests pass locally
-
Test on rhub:
- Have to validate email first with
rhub::validate_email(). Copy-paste token from email into R console - Check on Ubuntu with
rhub::check_for_cran(platform = "ubuntu-gcc-devel") - Check on Solaris with
rhub::check_for_cran(platform = "solaris-x86-patched")
- Have to validate email first with
-
Test on winbuilder:
- Check with R devel with
devtools::check_win_devel()
- Check with R devel with
-
Update cran-comments.md
-
Commit with
git commit -am "Bump version: x.x.x.x -> x.x.x and re-build docs." -
Push with
git push origin mainand wait for CI builds to pass -
Build tarball with
R CMD build .and upload to CRAN submission site. You will receive an email to request confirmation, then an email confirming the package was submitted, and then an email with the test results. Once it is accepted to CRAN, monitor the check results for any surprise errors. Also, these builds are when the binaries are built for Windows and macOS, so they aren't available until they are finished. You will receive an email once all the Windows binaries are available for download (devel, release, oldrel). -
You can monitor the status of the CRAN submission with the foghorn package:
foghorn::cran_incoming("workflowr") foghorn::cran_details("workflowr") foghorn::cran_results(pkg = "workflowr") -
Tag with
git tag -a vx.x.x. Summarize NEWS.md entry into bullet points. Rungit tag -l -n9for past examples. Push withgit push origin --tags. -
Make a release. On GitHub, go to Releases -> Tags -> Edit release notes. Name the release "workflowr x.x.x" and copy-paste the Markdown entry from NEWS.md.