-
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
d72269c
commit 0734df9
Showing
9 changed files
with
157 additions
and
5 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 |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
^\.github$ | ||
^NOTICE$ | ||
^LICENSE$ | ||
^revdep$ |
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 @@ | ||
*.html |
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,49 @@ | ||
# 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: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: macos-latest, r: 'release'} | ||
- {os: windows-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | ||
- {os: ubuntu-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'oldrel-1'} | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_KEEP_PKG_SOURCE: yes | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
http-user-agent: ${{ matrix.config.http-user-agent }} | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
upload-snapshots: true |
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,70 @@ | ||
## Test environments | ||
- R-hub windows-x86_64-devel (r-devel) | ||
- R-hub ubuntu-gcc-release (r-release) | ||
- R-hub fedora-clang-devel (r-devel) | ||
|
||
## R CMD check results | ||
❯ On windows-x86_64-devel (r-devel) | ||
checking CRAN incoming feasibility ... NOTE | ||
Maintainer: 'notPlancha <Andre_Plancha@iscte-iul.pt>' | ||
|
||
New submission | ||
|
||
Possibly misspelled words in DESCRIPTION: | ||
Addin (3:16, 9:22) | ||
Keymaps (3:43) | ||
Rstudio (3:8, 9:14) | ||
keymaps (9:46) | ||
|
||
> dev note: not misspelled | ||
❯ On windows-x86_64-devel (r-devel) | ||
checking for non-standard things in the check directory ... NOTE | ||
Found the following files/directories: | ||
''NULL'' | ||
|
||
> dev note: rhub thing https://github.com/r-hub/rhub/issues/560 | ||
❯ On windows-x86_64-devel (r-devel) | ||
checking for detritus in the temp directory ... NOTE | ||
Found the following files/directories: | ||
'lastMiKTeXException' | ||
|
||
> dev note: rhub bug https://github.com/r-hub/rhub/issues/503 | ||
❯ On ubuntu-gcc-release (r-release) | ||
checking CRAN incoming feasibility ... [6s/27s] NOTE | ||
Maintainer: ‘notPlancha <Andre_Plancha@iscte-iul.pt>’ | ||
|
||
New submission | ||
|
||
Possibly misspelled words in DESCRIPTION: | ||
Addin (3:16, 9:22) | ||
keymaps (9:46) | ||
Keymaps (3:43) | ||
Rstudio (3:8, 9:14) | ||
|
||
> dev note: not misspelled | ||
|
||
❯ On ubuntu-gcc-release (r-release), fedora-clang-devel (r-devel) | ||
checking HTML version of manual ... NOTE | ||
Skipping checking HTML validation: no command 'tidy' found | ||
|
||
> dev note: rhub bug https://github.com/r-hub/rhub/issues/548 | ||
❯ On fedora-clang-devel (r-devel) | ||
checking CRAN incoming feasibility ... [6s/34s] NOTE | ||
Maintainer: ‘notPlancha <Andre_Plancha@iscte-iul.pt>’ | ||
|
||
New submission | ||
|
||
Possibly misspelled words in DESCRIPTION: | ||
Addin (3:16, 9:22) | ||
Keymaps (3:43) | ||
Rstudio (3:8, 9:14) | ||
keymaps (9:46) | ||
|
||
> dev note: not misspelled | ||
0 errors ✔ | 0 warnings ✔ | 6 notes ✖ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
checks | ||
library | ||
checks.noindex | ||
library.noindex | ||
cloud.noindex | ||
data.sqlite | ||
*.html |