Skip to content

Commit

Permalink
updated actions and cran info.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakejh committed Nov 24, 2022
1 parent e7e399f commit 7a0c3c1
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
with:
extra-packages: any::pkgdown, local::.
needs: website
pak-version: devel

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
Expand Down
21 changes: 20 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,24 @@ jobs:
needs: coverage

- name: Test coverage
run: covr::codecov(quiet = FALSE)
run: |
covr::codecov(
quiet = FALSE,
clean = FALSE,
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
)
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@v3
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 0.1.2
Date: 2022-10-24 19:39:34 UTC
SHA: 6cf359e3e9eb40c875c48c005a2e473fc032e96c
Version: 0.1.4
Date: 2022-11-24 11:59:30 UTC
SHA: e7e399f4657a5f222814e42be722b63d929090b0
20 changes: 15 additions & 5 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,28 @@

### R-hub

0 errors ✓ | 0 warnings ✓ | 1 note x
0 errors ✓ | 0 warnings ✓ | 2 notes x

❯ checking CRAN incoming feasibility ... NOTE
Maintainer: 'Jake Hughey <jake@agency.fund>'

New maintainer:
Jake Hughey <jake@agency.fund>
Old maintainer(s):
Jake Hughey <jakejhughey@gmail.com>

❯ checking for detritus in the temp directory ... NOTE
Found the following files/directories:
'lastMiKTeXException'

## Changes from current CRAN release

* Fixed `drop_empties()` to return result invisibly.
* Added argument `validate` to `scto_auth()` for debugging.
* Added column `title` to output of `scto_catalog()`.
* Updated documentation.
* Changed maintainer email address.
* Enabled `scto_read()` to read from one, multiple, or all forms and datasets.
* Added `simplify` argument to `scto_read()` and `scto_get_form_definitions()`.
* Fixed `scto_read()` to not return result invisibly.
* Added column `version` to output of `scto_catalog()`.
* Added `scto_get_form_definitions()` to do just that.

## Additional information

Expand Down

0 comments on commit 7a0c3c1

Please sign in to comment.