Skip to content

Commit

Permalink
update r cmd check file for gh actions, standard release
Browse files Browse the repository at this point in the history
  • Loading branch information
fawda123 committed Jan 6, 2022
1 parent ab66a2a commit 8851ae0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 14 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,32 @@ name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ubuntu-latest
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'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2

- uses: r-lib/actions/setup-pandoc@v1

- uses: r-lib/actions/setup-r@v1
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@v1
Expand Down
21 changes: 8 additions & 13 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
## Resubmission
This is an update to v1.5.2 with new CITATION file for JSS article
This is an update to v1.5.3

## Test environments
* Ubuntu 14.04.5 LTS (on travis-ci), R 3.4.4
* local Windows 7 install, R 3.4.4
* local Windows 7 install, Current r-devel (2018-07-25 r75005)
* Ubuntu 20.04.3 LTS (on travis-ci), R 3.4.4
* local Windows 10 install, R 4.1.2
* Windows install (on AppVeyor), R 3.5.1 Patched (2018-07-24 r75006)
* win-builder [http://win-builder.r-project.org/](http://win-builder.r-project.org/) (devel and release)

## R CMD check results
There were no ERRORs or WARNINGs.

There was 1 NOTE, the DOI will be registered by JSS when this version is on CRAN:
There was 1 NOTE, for an email change for one that is no longer valid:

* checking CRAN incoming feasibility ... NOTE
Maintainer: 'Marcus W. Beck <[email protected]>'

Found the following (possibly) invalid DOIs:
DOI: 10.18637/jss.v085.i11
From: inst/CITATION
Status: Not Found
Message: 404
* checking DESCRIPTION meta-information ... NOTE
Maintainer field differs from that derived from Authors@R
Maintainer: 'Marcus W. Beck <[email protected]>'
Authors@R: 'Marcus W. Beck <[email protected]>'

## Downstream dependencies
I have also run R CMD check on the radiant.model and RSNNS downstream dependencies for NeuralNetTools. There were no ERRORs, WARNINGs, or NOTEs.

0 comments on commit 8851ae0

Please sign in to comment.