forked from codecheckers/codecheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
58 lines (42 loc) · 1.85 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# codecheck
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![R build status](https://github.com/codecheckers/codecheck/workflows/R-CMD-check/badge.svg)](https://github.com/codecheckers/codecheck/actions)
[![DOI](https://zenodo.org/badge/256862293.svg)](https://zenodo.org/badge/latestdoi/256862293)
<!-- badges: end -->
`codecheck` is an assistant for conducting CODECHECKs, written in the R language and distributed as an R package.
The goal of codecheck is to ease the process to create a CODECHECK-ready workspace, and to conduct the actual CODECHECK.
Furthermore, the package contains some helper functions for managing the [CODECHECK register](https://codecheck.org.uk/register/).
**Learn more about CODECHECK on [https://codecheck.org.uk/](https://codecheck.org.uk/).**
## Installation
The package is not on [CRAN](https://CRAN.R-project.org) yet.
Install the development version from [GitHub](https://github.com/codecheckers/codecheck) with:
``` r
# install.packages("remotes")
remotes::install_github("codecheckers/codecheck")
```
## Usage
See the main vignette.
## Development
The package uses [`tinytest`](https://cran.r-project.org/package=tinytest) for tests.
Run `test_all("/path/to/package")` to run all tests interactively.
Even better, run the tests in a fresh install/temporary directory using
```r
# assuming . is the package path
build_install_test(".")
```
## License
Copyright 2022 S. Eglen & D. Nüst.
The `codecheck` package is published under the MIT license, see file `LICENSE`.