-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from inbo/cran
avoid checks on CRAN
- Loading branch information
Showing
48 changed files
with
603 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,3 +97,4 @@ jobs: | |
with: | ||
name: ${{ runner.os }}-r${{ matrix.config.r }}-results | ||
path: check | ||
retention-days: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{ | ||
"title": "A Thorough and Strict Set of Checks for R Packages and Source Code", | ||
"description": "An opinated set of rules for R packages and R source code projects an used at the Research Institute for Nature and Forest (INBO), Brussels, Belgium (<a href=\"https://www.inbo.be/en\">www.inbo.be</a>).", | ||
"license": "GPL-3.0", | ||
"upload_type": "other", | ||
"access_right": "open", | ||
"creators": [ | ||
{ | ||
"name": "Onkelinx, Thierry", | ||
"affiliation": "Research Institute for Nature and Forest", | ||
"orcid": "0000-0001-8804-4216" | ||
} | ||
], | ||
"keywords": [ | ||
"R", | ||
"package", | ||
"open science", | ||
"continous integreation", | ||
"unit test", | ||
"code style" | ||
] | ||
"title": ["checklist: A Thorough and Strict Set of Checks for R Packages and Source Code"], | ||
"version": ["0.1.14"], | ||
"description": ["An opinated set of rules for R packages and R source code projects."], | ||
"creators": [ | ||
{ | ||
"name": ["Onkelinx, Thierry"], | ||
"orcid": ["https://orcid.org/0000-0001-8804-4216"] | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": ["Lommelen, Els"], | ||
"orcid": ["https://orcid.org/0000-0002-3481-5684"] | ||
} | ||
], | ||
"upload_type": ["software"], | ||
"access_rights": ["open"], | ||
"license": ["GPL-3.0"], | ||
"communities": { | ||
"identifier": ["inbo"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cff-version: 1.2.0 | ||
message: If you use this software, please cite it as below. | ||
authors: | ||
- family-names: Onkelinx | ||
given-names: Thierry | ||
orcid: https://orcid.org/0000-0001-8804-4216 | ||
contact: | ||
- email: [email protected] | ||
family-names: Onkelinx | ||
given-names: Thierry | ||
- email: [email protected] | ||
name: Research Institute for Nature and Forest | ||
title: 'checklist: A Thorough and Strict Set of Checks for R Packages and Source Code' | ||
version: 0.1.14 | ||
abstract: An opinated set of rules for R packages and R source code projects. | ||
license: GPL-3.0 | ||
type: software | ||
doi: 10.5281/zenodo.4028303 | ||
repository-code: https://github.com/inbo/checklist | ||
identifiers: | ||
- type: url | ||
value: https://inbo.github.io/checklist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,14 @@ | ||
Type: Package | ||
Package: checklist | ||
Title: A Thorough and Strict Set of Checks for R Packages and Source Code | ||
Version: 0.1.13 | ||
Authors@R: | ||
c(person(given = "Thierry", | ||
family = "Onkelinx", | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-8804-4216")), | ||
person(given = "Els", | ||
family = "Lommelen", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-3481-5684")), | ||
person(given = "Research Institute for Nature and Forest", | ||
role = c("cph", "fnd"), | ||
email = "[email protected]")) | ||
Version: 0.1.14 | ||
Authors@R: c( | ||
person("Thierry", "Onkelinx", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-8804-4216")), | ||
person("Els", "Lommelen", , "[email protected]", role = "ctb", | ||
comment = c(ORCID = "0000-0002-3481-5684")), | ||
person("Research Institute for Nature and Forest", , , "[email protected]", role = c("cph", "fnd")) | ||
) | ||
Description: An opinated set of rules for R packages and R source code | ||
projects. | ||
License: GPL-3 | ||
|
@@ -30,6 +23,7 @@ Imports: | |
devtools (> 2.4.0), | ||
git2r, | ||
httr, | ||
jsonlite, | ||
lintr, | ||
pkgdown, | ||
rcmdcheck, | ||
|
@@ -53,4 +47,4 @@ Additional_repositories: https://ropensci.r-universe.dev | |
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.