Skip to content

Commit 426170f

Browse files
committed
New data collected at 2025-06-30_00-02-18
1 parent c63c715 commit 426170f

11 files changed

Lines changed: 76 additions & 21 deletions

File tree

github-actions/data.table/code-quality.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,10 @@ jobs:
6161
- uses: r-lib/actions/setup-r@v2
6262
- name: Lint
6363
run: Rscript .ci/lint.R .ci/linters/md . '[.]R?md$'
64+
lint-rd:
65+
runs-on: ubuntu-latest
66+
steps:
67+
- uses: actions/checkout@v4
68+
- uses: r-lib/actions/setup-r@v2
69+
- name: Lint Rd files
70+
run: Rscript .ci/lint.R .ci/linters/rd man '[.]Rd$'

github-actions/lintr/repo-meta-tests.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ jobs:
4545
run: |
4646
callr::rscript(".dev/defunct_linters_test.R")
4747
shell: Rscript {0}
48+
49+
- name: Ensure any objects in the namespace are actually needed
50+
run: |
51+
callr::rscript(".dev/unused_helpers_test.R")
52+
shell: Rscript {0}

github-actions/mlflow/autoformat.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ jobs:
4848
const pullInfo = await autoformat.getPullInfo(context, github);
4949
return { ...pullInfo, shouldAutoformat };
5050
51+
- name: Check maintainer access
52+
if: ${{ fromJSON(steps.judge.outputs.result).shouldAutoformat }}
53+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
54+
with:
55+
script: |
56+
const autoformat = require('./.github/workflows/autoformat.js');
57+
await autoformat.checkMaintainerAccess(context, github);
58+
5159
format:
5260
runs-on: ubuntu-latest
5361
timeout-minutes: 30
@@ -110,7 +118,7 @@ jobs:
110118
sudo chmod -R 777 /tmp/protoc
111119
echo "/tmp/protoc/bin" >> $GITHUB_PATH
112120
pip install --upgrade pip
113-
pip install -e .
121+
pip install .
114122
- if: steps.diff.outputs.protos == 'true'
115123
run: |
116124
# Run the script multiple times. The changes generated by the first run
@@ -123,6 +131,7 @@ jobs:
123131
# ************************************************************************
124132
- if: steps.diff.outputs.db == 'true'
125133
run: |
134+
pip install .
126135
tests/db/update_schemas.sh
127136
# ************************************************************************
128137
# js

github-actions/rio/test-coverage.yaml

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

9-
name: test-coverage
8+
name: test-coverage.yaml
9+
10+
permissions: read-all
1011

1112
jobs:
1213
test-coverage:
1314
runs-on: ubuntu-latest
1415
env:
1516
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
16-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
17-
17+
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- uses: r-lib/actions/setup-r@v2
2222
with:
2323
use-public-rspm: true
2424

2525
- uses: r-lib/actions/setup-r-dependencies@v2
2626
with:
27-
extra-packages: any::covr
27+
extra-packages: any::covr, any::xml2
2828
needs: coverage
2929

3030
- name: Test coverage
3131
run: |
32-
covr::codecov(
32+
cov <- covr::package_coverage(
3333
quiet = FALSE,
3434
clean = FALSE,
35-
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
35+
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3636
)
37+
print(cov)
38+
covr::to_cobertura(cov)
3739
shell: Rscript {0}
3840

41+
- uses: codecov/codecov-action@v5
42+
with:
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
47+
disable_search: true
48+
token: ${{ secrets.CODECOV_TOKEN }}
49+
3950
- name: Show testthat output
4051
if: always()
4152
run: |
4253
## --------------------------------------------------------------------
43-
find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
54+
find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
4455
shell: bash
4556

4657
- name: Upload test results
4758
if: failure()
48-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
4960
with:
5061
name: coverage-test-failures
5162
path: ${{ runner.temp }}/package

github-actions/sparklyr/spark-tests.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
config:
21-
- {spark: '3.4.4', hadoop: '3', arrow: '', livy: '', dbplyr: '', name: 'Spark 3.4'}
22-
- {spark: '3.5.6', hadoop: '3', arrow: 'release', livy: '', dbplyr: '', name: 'Spark 3.6 w Arrow'}
21+
- {spark: '2.4.8', hadoop: '2.7', arrow: '', livy: '', dbplyr: '', name: 'Spark 2.4'}
22+
- {spark: '3.4.4', hadoop: '3', arrow: '', livy: '', dbplyr: '', name: 'Spark 3.4'}
23+
- {spark: '3.5.6', hadoop: '3', arrow: '', livy: '', dbplyr: '', name: 'Spark 3.6'}
24+
- {spark: '4.0.0', hadoop: '3', arrow: '', livy: '', dbplyr: '', name: 'Spark 4.0'}
25+
- {spark: '4.0.0', hadoop: '3', arrow: 'release', livy: '', dbplyr: '', name: 'Spark 4.0 w Arrow'}
2326

2427
env:
2528
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

github-actions/stars/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
config:
24-
- {os: macos-latest, r: 'release'}
24+
# - {os: macos-latest, r: 'release'}
2525
- {os: windows-latest, r: 'release'}
2626
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
2727
- {os: ubuntu-latest, r: 'release'}
@@ -49,7 +49,7 @@ jobs:
4949

5050
- uses: r-lib/actions/setup-r-dependencies@v2
5151
with:
52-
extra-packages: any::rcmdcheck
52+
extra-packages: any::rcmdcheck, starsdata=?ignore, PCICt=?ignore
5353
needs: check
5454

5555
- uses: r-lib/actions/check-r-package@v2

github-actions/stars/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: r-lib/actions/setup-r-dependencies@v2
2525
with:
26-
extra-packages: any::covr, starsdata=?ignore
26+
extra-packages: any::covr, starsdata=?ignore, PCICt=?ignore
2727
needs: coverage
2828

2929
- name: Test coverage

pkgdown/ggpubr_pkgdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
templates:
22
params:
33
bootswatch: lumen
4-
ganalytics: UA-54921687-5
4+
ganalytics: G-62JB5GM9C4
55
docsearch:
66
api_key: 6417dc1a4a7896d9002b8ad567f92f4c
77
index_name: ggpubr
@@ -15,7 +15,7 @@ reference:
1515
- gghistogram
1616
- ggecdf
1717
- ggqqplot
18-
- title: Plot Two Vriables - X and Y, Discrete X and Continuous Y
18+
- title: Plot Two Variables - X and Y, Discrete X and Continuous Y
1919
desc: Visualize data distributions by groups.
2020
contents:
2121
- ggboxplot

pkgdown/httr2_pkgdown.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ reference:
3333
- last_request
3434
- req_dry_run
3535
- req_verbose
36-
- with_mock
3736
- with_verbosity
3837

3938
- subtitle: Authentication
@@ -78,8 +77,6 @@ reference:
7877
contents:
7978
- curl_translate
8079
- is_online
81-
- secrets
82-
- obfuscate
8380

8481
- title: OAuth
8582
desc: >
@@ -88,6 +85,25 @@ reference:
8885
- starts_with("oauth_")
8986
- -starts_with("req_oauth")
9087

88+
- title: Developer tooling
89+
desc: >
90+
These functions are useful when developing packges that use httr2.
91+
92+
- subtitle: Keeping secrets
93+
contents:
94+
- obfuscate
95+
- secrets
96+
97+
- subtitle: Testing
98+
contents:
99+
- response
100+
101+
- subtitle: Introspection and mocking
102+
contents:
103+
- new_response
104+
- starts_with("req_get_")
105+
- with_mocked_responses
106+
91107
articles:
92108
- title: Using httr2
93109
navbar: ~

rbuildignore/ggpubr.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@
1313
^\.github$
1414
^data-raw$
1515
^ISSUE_TEMPLATE\.md$
16+
^_tmp$
17+
^CRAN-SUBMISSION$

0 commit comments

Comments
 (0)