Skip to content

Commit 042d483

Browse files
authored
Merge pull request #204 from r-lib/upkeep-2025-04
2 parents f46b6e2 + 8b8c93c commit 042d483

Some content is hidden

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

55 files changed

+1554
-1222
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@
2020
^.*\.Rproj$
2121
^pkgdown$
2222
^LICENSE\.md$
23+
^[\.]?air\.toml$
24+
^\.vscode$

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

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

1413
name: R-CMD-check.yaml
@@ -66,7 +65,3 @@ jobs:
6665
with:
6766
upload-snapshots: true
6867
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
69-
70-
- name: Interactive debug
71-
if: ${{ always() && runner.os == 'Linux' && runner.debug == '1' && github.run_attempt != '1' }}
72-
uses: r-hub/actions/ssh-server@main

.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: 6 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

@@ -35,14 +34,16 @@ jobs:
3534
clean = FALSE,
3635
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3736
)
37+
print(cov)
3838
covr::to_cobertura(cov)
3939
shell: Rscript {0}
4040

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

.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
@@ -6,7 +6,8 @@ Authors@R: c(
66
person("Dave", "Daeschler", role = "aut"),
77
person("Giampaolo", "Rodola'", role = "aut"),
88
person("Gábor", "Csárdi", , "csardi.gabor@gmail.com", role = c("aut", "cre")),
9-
person("Posit Software, PBC", role = c("cph", "fnd"))
9+
person("Posit Software, PBC", role = c("cph", "fnd"),
10+
comment = c(ROR = "03wc8by49"))
1011
)
1112
Description: List, query and manipulate all system processes, on
1213
'Windows', 'Linux' and 'macOS'.
@@ -32,6 +33,7 @@ Suggests:
3233
Biarch: true
3334
Config/Needs/website: tidyverse/tidytemplate
3435
Config/testthat/edition: 3
36+
Config/usethis/last-upkeep: 2025-04-28
3537
Encoding: UTF-8
3638
Roxygen: list(markdown = TRUE)
3739
RoxygenNote: 7.3.2

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: ps 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 ps authors
3+
Copyright (c) 2025 ps 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

R/cleancall.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
call_with_cleanup <- function(ptr, ...) {
32
.Call(cleancall_call, pairlist(ptr, ...), parent.frame())
43
}

0 commit comments

Comments
 (0)