-
Notifications
You must be signed in to change notification settings - Fork 1
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 #10 from bschilder/main
Add rworkflows CI + Get closer to passing rcmdchecks
- Loading branch information
Showing
13 changed files
with
176 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: rworkflows | ||
'on': | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- devel | ||
- RELEASE_** | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
- devel | ||
- RELEASE_** | ||
jobs: | ||
rworkflows: | ||
permissions: write-all | ||
runs-on: ${{ matrix.config.os }} | ||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
container: ${{ matrix.config.cont }} | ||
strategy: | ||
fail-fast: ${{ false }} | ||
matrix: | ||
config: | ||
- os: ubuntu-latest | ||
bioc: devel | ||
r: auto | ||
cont: ghcr.io/bioconductor/bioconductor_docker:devel | ||
rspm: ~ | ||
- os: macOS-latest | ||
bioc: release | ||
r: auto | ||
cont: ~ | ||
rspm: ~ | ||
- os: windows-latest | ||
bioc: release | ||
r: auto | ||
cont: ~ | ||
rspm: ~ | ||
steps: | ||
- uses: neurogenomics/rworkflows@master | ||
with: | ||
run_bioccheck: ${{ false }} | ||
run_rcmdcheck: ${{ true }} | ||
as_cran: ${{ true }} | ||
run_vignettes: ${{ true }} | ||
has_testthat: ${{ true }} | ||
run_covr: ${{ true }} | ||
run_pkgdown: ${{ true }} | ||
has_runit: ${{ false }} | ||
has_latex: ${{ false }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run_docker: ${{ true }} | ||
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | ||
runner_os: ${{ runner.os }} | ||
cache_version: cache-v1 | ||
docker_registry: ghcr.io |
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,24 +1,35 @@ | ||
Package: monarchr | ||
Type: Package | ||
Title: What the Package Does (Title Case) | ||
Version: 0.2.0 | ||
Author: Who wrote it | ||
Maintainer: The package maintainer <[email protected]> | ||
Description: More about what it does (maybe more than one line) | ||
Use four spaces when indenting paragraphs within the Description. | ||
Title: Monarch Knowledge Graph Queries | ||
Description: R package for easy access, manipulation, and analysis of | ||
Monarch KG data Resources. | ||
Version: 0.2.1 | ||
Authors@R: | ||
c( | ||
person(given = "Shawn", | ||
family = "O'Neil", | ||
role = c("aut","cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6220-7080")), | ||
person(given = "Brian", | ||
family = "Schilder", | ||
role = c("aut","ctb"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-5949-2191")) | ||
) | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Suggests: | ||
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
VignetteBuilder: knitr | ||
Imports: | ||
assertthat, | ||
colorDF, | ||
dotenv, | ||
dplyr, | ||
tidyr, | ||
ggiraph, | ||
ggraph, | ||
httr, | ||
|
@@ -33,3 +44,6 @@ Imports: | |
tidygraph, | ||
vcr, | ||
yaml | ||
Suggests: | ||
testthat (>= 3.0.0), | ||
knitr |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# monarchr 0.2.1 | ||
|
||
* Add rworkflows GHA for automated checking, site building, and Docker container creation. | ||
* Update *.Rbuildignore*. | ||
* Add NEWS file. | ||
* Add Title, Description, and Authors to *DESCRIPTION*. | ||
- Hope you don't mind me adding our names here @oneilsh, I anticipate making lots of contributions! | ||
* Add `tidyr` Import to *DESCRIPTION*. | ||
* Add vignettes header info. | ||
* Fix `edges` docs by adding title. | ||
* Add `VignetteBuilder: knitr` to *DESCRIPTION*. | ||
* Fix `cypher_query` example by adding `ids` | ||
* Fix `cypher_query_df` example by adding `ids` | ||
* Export `cypher_query_df` | ||
* Get `monarchR` closer to passing rcmdcheck (methods for edges/nodes not yet being recognized) |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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