Skip to content

Commit c9f73fd

Browse files
authored
Merge pull request #31 from ropensci/rd
docs: update package-level manual page
2 parents 03c07b6 + 7f34f2b commit c9f73fd

File tree

4 files changed

+35
-24
lines changed

4 files changed

+35
-24
lines changed

.github/workflows/R-CMD-check.yaml

+14-20
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
55
branches: [main, master]
66
pull_request:
77
branches: [main, master]
88

9-
name: R-CMD-check
9+
name: R-CMD-check.yaml
10+
11+
permissions: read-all
1012

1113
jobs:
1214
R-CMD-check:
@@ -18,7 +20,7 @@ jobs:
1820
fail-fast: false
1921
matrix:
2022
config:
21-
- {os: macOS-latest, r: 'release'}
23+
- {os: macos-latest, r: 'release'}
2224
- {os: windows-latest, r: 'release'}
2325
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
2426
- {os: ubuntu-latest, r: 'release'}
@@ -29,30 +31,22 @@ jobs:
2931
R_KEEP_PKG_SOURCE: yes
3032

3133
steps:
32-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v4
3335

34-
- uses: r-lib/actions/setup-pandoc@v1
36+
- uses: r-lib/actions/setup-pandoc@v2
3537

36-
- uses: r-lib/actions/setup-r@v1
38+
- uses: r-lib/actions/setup-r@v2
3739
with:
3840
r-version: ${{ matrix.config.r }}
3941
http-user-agent: ${{ matrix.config.http-user-agent }}
4042
use-public-rspm: true
4143

42-
- uses: r-lib/actions/setup-r-dependencies@v1
44+
- uses: r-lib/actions/setup-r-dependencies@v2
4345
with:
44-
extra-packages: rcmdcheck
45-
46-
- uses: r-lib/actions/check-r-package@v1
47-
48-
- name: Show testthat output
49-
if: always()
50-
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true
51-
shell: bash
46+
extra-packages: any::rcmdcheck
47+
needs: check
5248

53-
- name: Upload check results
54-
if: failure()
55-
uses: actions/upload-artifact@main
49+
- uses: r-lib/actions/check-r-package@v2
5650
with:
57-
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
58-
path: check
51+
upload-snapshots: true
52+
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

DESCRIPTION

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ License: GPL-3
2121
URL: https://docs.ropensci.org/plater/, https://github.com/ropensci/plater
2222
BugReports: https://github.com/ropensci/plater/issues
2323
VignetteBuilder: knitr
24-
RoxygenNote: 7.1.2
24+
RoxygenNote: 7.3.2
25+
Encoding: UTF-8

R/plater.R

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#' allows easy plate-shaped visualization of tidy data
1212
#' (\code{\link[plater]{view_plate}}).
1313
#'
14-
#' @docType package
15-
#' @name plater
14+
#' @keywords internal
15+
"_PACKAGE"
16+
1617
NULL

man/plater.Rd man/plater-package.Rd

+16-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)