Skip to content

Commit

Permalink
reverse dependency check
Browse files Browse the repository at this point in the history
  • Loading branch information
ygeunkim committed Oct 5, 2024
1 parent d219dc7 commit 8626a07
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 36 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
- {os: ubuntu-latest, r: 'oldrel-1'}
- {os: ubuntu-latest, r: 'oldrel-2'}
- {os: ubuntu-latest, r: 'oldrel-3'}
- {os: ubuntu-latest, r: 'oldrel-4'}
- {os: ubuntu-latest, r: '3.6'}

env:
Expand Down Expand Up @@ -78,7 +77,7 @@ jobs:

# do not build vignettes in github actions check and ignore warnings
- uses: r-lib/actions/check-r-package@v2
if: "!startsWith(github.ref, 'refs/heads/release/')"
if: "!startsWith(github.ref, 'refs/heads/release/') && !startsWith(github.ref, 'refs/heads/hotfix/')"
with:
args: 'c("--no-manual", "--as-cran", "--no-vignettes", "--no-build-vignettes", "--ignore-vignettes", "--no-examples")'
build_args: 'c("--no-manual", "--no-build-vignettes")'
Expand All @@ -89,7 +88,7 @@ jobs:

- name: Run check for CRAN
uses: r-lib/actions/check-r-package@v2
if: startsWith(github.ref, 'refs/heads/release/')
if: startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/hotfix/')
with:
args: 'c("--no-manual", "--as-cran")'
build_args: 'c("--no-manual")'
Expand Down
68 changes: 35 additions & 33 deletions revdep/README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,43 @@
# Platform

|field |value |
|:--------|:----------------------------|
|version |R version 4.3.3 (2024-02-29) |
|os |macOS Big Sur ... 10.16 |
|system |x86_64, darwin20 |
|ui |X11 |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |Asia/Seoul |
|date |2024-09-16 |
|pandoc |3.3 @ /usr/local/bin/pandoc |
|field |value |
|:--------|:-------------------------------------|
|version |R version 4.3.3 (2024-02-29) |
|os |macOS Big Sur ... 10.16 |
|system |x86_64, darwin20 |
|ui |X11 |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |Asia/Seoul |
|date |2024-10-05 |
|pandoc |3.4 @ /usr/local/bin/ (via rmarkdown) |

# Dependencies

|package |old |new |Δ |
|:-----------|:-----|:---------|:--|
|bvhar |2.0.1 |2.1.0 |* |
|abind |NA |1.4-8 |* |
|backports |NA |1.5.0 |* |
|checkmate |NA |2.3.2 |* |
|cli |NA |3.6.3 |* |
|colorspace |NA |2.1-1 |* |
|cpp11 |NA |0.4.7 |* |
|farver |NA |2.1.2 |* |
|ggplot2 |NA |3.5.1 |* |
|gtable |NA |0.3.5 |* |
|matrixStats |NA |1.4.1 |* |
|munsell |NA |0.5.1 |* |
|posterior |NA |1.5.0 |* |
|Rcpp |NA |1.0.13 |* |
|RcppEigen |NA |0.3.4.0.2 |* |
|rlang |NA |1.1.4 |* |
|stringi |NA |1.8.4 |* |
|tidyselect |NA |1.2.1 |* |
|withr |NA |3.0.1 |* |
|package |old |new |Δ |
|:--------------|:-----|:---------|:--|
|bvhar |2.1.0 |2.1.1 |* |
|abind |NA |1.4-8 |* |
|backports |NA |1.5.0 |* |
|checkmate |NA |2.3.2 |* |
|cli |NA |3.6.3 |* |
|colorspace |NA |2.1-1 |* |
|cpp11 |NA |0.5.0 |* |
|distributional |NA |0.5.0 |* |
|farver |NA |2.1.2 |* |
|ggplot2 |NA |3.5.1 |* |
|glue |NA |1.8.0 |* |
|gtable |NA |0.3.5 |* |
|matrixStats |NA |1.4.1 |* |
|munsell |NA |0.5.1 |* |
|posterior |NA |1.6.0 |* |
|Rcpp |NA |1.0.13 |* |
|RcppEigen |NA |0.3.4.0.2 |* |
|rlang |NA |1.1.4 |* |
|stringi |NA |1.8.4 |* |
|tidyselect |NA |1.2.1 |* |
|withr |NA |3.0.1 |* |

# Revdeps

0 comments on commit 8626a07

Please sign in to comment.