-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60400a1
commit acd3691
Showing
21 changed files
with
279 additions
and
256 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
.DS_Store | ||
.gitignore | ||
.git | ||
.git/* | ||
README.md | ||
FAQ.md | ||
TODO.md | ||
CODE_OF_CONDUCT.md | ||
LICENSE.md | ||
Makefile | ||
.Rprofile | ||
^appveyor\.yml$ | ||
^\.Rproj\.user$ | ||
^.*\.Rproj$ | ||
^doc$ | ||
^Meta$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^.+\.Rproj$ | ||
^\.gitignore$ | ||
^\.git$ | ||
^\.github$ | ||
^\.DS_Store$ | ||
^Makefile$ | ||
^\.Rprofile$ | ||
^revdep$ | ||
^codecov\.yml$ | ||
^_pkgdown\.yml$ | ||
^pkgdown$ | ||
^docs$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^FAQ\.md$ | ||
^LICENSE\.md$ | ||
^README\.Rmd$ | ||
^README\.md$ | ||
^TODO\.md$ | ||
data-raw |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: test-coverage | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::covr | ||
needs: coverage | ||
|
||
- name: Test coverage | ||
run: | | ||
token <- Sys.getenv("CODECOV_TOKEN", "") | ||
covr::codecov( | ||
quiet = FALSE, | ||
clean = FALSE, | ||
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package"), | ||
token = if (token != "") token | ||
) | ||
shell: Rscript {0} | ||
|
||
- name: Show testthat output | ||
if: always() | ||
run: | | ||
## -------------------------------------------------------------------- | ||
find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true | ||
shell: bash | ||
|
||
- name: Upload test results | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage-test-failures | ||
path: ${{ runner.temp }}/package |
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 |
---|---|---|
@@ -1,24 +1,40 @@ | ||
Package: svBase | ||
Type: Package | ||
Version: 1.4.0 | ||
Title: 'SciViews' - Functions for Base Objects like Data Frames | ||
Title: Base Objects like Data Frames for 'SciViews::R' | ||
Description: Functions to manipulated the three main classes of "data frames" | ||
for 'SciViews': data.frame, data.table and tibble. Allow to select the | ||
for 'SciViews::R': data.frame, data.table and tibble. Allow to select the | ||
preferred one, and to convert more carefully between the three, taking care of | ||
correct presentation of row names and data.table's keys. More homogeneous way | ||
of creating these three data frames and of printing them on the R console. | ||
Authors@R: c(person("Philippe", "Grosjean", role = c("aut", "cre"), | ||
email = "phgrosjean@sciviews.org", | ||
comment = c(ORCID = "0000-0002-2694-9471"))) | ||
Maintainer: Philippe Grosjean <phgrosjean@sciviews.org> | ||
Depends: R (>= 4.1.0) | ||
Imports: data.table, collapse, zeallot, tibble, dplyr, tidyr, rlang | ||
Suggests: dtplyr, svMisc, covr, knitr, markdown, rmarkdown, testthat, spelling | ||
License: GPL-2 | ||
Depends: | ||
R (>= 4.2.0) | ||
Imports: | ||
collapse (>= 2.0.12), | ||
data.table (>= 1.15.4), | ||
dplyr (>= 1.1.4), | ||
rlang (>= 1.1.1), | ||
tibble (>= 3.2.1), | ||
tidyr (>= 1.3.0), | ||
zeallot (>= 0.1.0) | ||
Suggests: | ||
dtplyr (>= 1.3.1), | ||
svMisc (>= 1.4.0), | ||
knitr (>= 1.42), | ||
rmarkdown (>= 2.21), | ||
spelling (>= 2.2.1), | ||
testthat (>= 3.0.0) | ||
License: MIT + file LICENSE | ||
URL: https://github.com/SciViews/svBase, https://www.sciviews.org/svBase/ | ||
BugReports: https://github.com/SciViews/svBase/issues | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
VignetteBuilder: knitr | ||
Encoding: UTF-8 | ||
Language: en-US | ||
ByteCompile: yes | ||
Config/testthat/edition: 3 |
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,2 @@ | ||
YEAR: 2024 | ||
COPYRIGHT HOLDER: Philippe Grosjean |
Oops, something went wrong.