Skip to content

Commit 3854636

Browse files
authored
Merge pull request #235 from r-lib/upkeep-2025-05
2 parents 6125f20 + 762906c commit 3854636

56 files changed

Lines changed: 805 additions & 507 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
^dev-lib$
1515
^LICENSE\.md$
1616
^codecov\.yml$
17+
^[\.]?air\.toml$
18+
^\.vscode$

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
push:
99
branches: [main, master]
1010
pull_request:
11-
branches: [main, master]
11+
workflow_dispatch:
1212

1313
name: R-CMD-check.yaml
1414

@@ -43,8 +43,8 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v4
46-
4746
- uses: r-lib/actions/setup-pandoc@v2
47+
- uses: r-lib/actions/setup-tinytex@v2
4848

4949
- uses: r-lib/actions/setup-r@v2
5050
with:

.github/workflows/pkgdown.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87
release:
98
types: [published]
109
workflow_dispatch:

.github/workflows/test-coverage.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87

98
name: test-coverage.yaml
109

@@ -18,6 +17,7 @@ jobs:
1817

1918
steps:
2019
- uses: actions/checkout@v4
20+
- uses: r-lib/actions/setup-tinytex@v2
2121

2222
- uses: r-lib/actions/setup-r@v2
2323
with:
@@ -35,14 +35,16 @@ jobs:
3535
clean = FALSE,
3636
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3737
)
38+
print(cov)
3839
covr::to_cobertura(cov)
3940
shell: Rscript {0}
4041

41-
- uses: codecov/codecov-action@v4
42+
- uses: codecov/codecov-action@v5
4243
with:
43-
fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
44-
file: ./cobertura.xml
45-
plugin: noop
44+
# Fail if error if not on PR, or if on PR and token is given
45+
fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }}
46+
files: ./cobertura.xml
47+
plugins: noop
4648
disable_search: true
4749
token: ${{ secrets.CODECOV_TOKEN }}
4850

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"Posit.air-vscode"
4+
]
5+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"[r]": {
3+
"editor.formatOnSave": true,
4+
"editor.defaultFormatter": "Posit.air-vscode"
5+
}
6+
}

DESCRIPTION

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Version: 1.4.0.9000
44
Authors@R: c(
55
person("Gábor", "Csárdi", , "csardi.gabor@gmail.com", role = c("cre", "aut")),
66
person("Mango Solutions", role = c("cph", "fnd")),
7-
person("Posit Software, PBC", role = c("cph", "fnd"))
7+
person("Posit Software, PBC", role = c("cph", "fnd"),
8+
comment = c(ROR = "03wc8by49"))
89
)
910
Description: Run 'R CMD check' from 'R' and capture the results of the
1011
individual checks. Supports running checks in the background,
@@ -40,6 +41,7 @@ Suggests:
4041
webfakes
4142
Config/Needs/website: tidyverse/tidytemplate
4243
Config/testthat/edition: 3
44+
Config/usethis/last-upkeep: 2025-05-07
4345
Encoding: UTF-8
4446
Roxygen: list(markdown = TRUE)
4547
RoxygenNote: 7.2.1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2023
1+
YEAR: 2025
22
COPYRIGHT HOLDER: rcmdcheck authors

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2023 rcmdcheck authors
3+
Copyright (c) 2025 rcmdcheck authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NEWS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
* Update pkgdown template and move url to https://rcmdcheck.r-lib.org.
88

9+
* `cran_check_results()` works again.
10+
911
# rcmdcheck 1.4.0
1012

1113
* `cran_check_results()` now downloads results in parallel, so it is
@@ -37,7 +39,7 @@
3739
`rcmdcheck.test_output` global option, to control whether to print the full
3840
test output or not. (#121)
3941

40-
* RStudio's Pandoc is now on the path during `rcmdcheck()`
42+
* RStudio's Pandoc is now on the path during `rcmdcheck()`
4143
and `rcmdcheck_process` (#109, #132, @dpprdan).
4244

4345
* `rcmdcheck()` now errors if the check process crashes (#110, #163).

0 commit comments

Comments
 (0)