Fix add_phylopic_tree and use it in the base R vignette #123
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| paths-ignore: | |
| - "Meta**" | |
| - "data-raw**" | |
| - "docs**" | |
| - "inst**" | |
| - "man**" | |
| - "memcheck**" | |
| - "tests**" | |
| - "vignettes**" | |
| - "**.git" | |
| - "**.json" | |
| - "**.md" | |
| - "**.yml" | |
| - "!**revdepcheck.yml" | |
| - "**.R[dD]ata" | |
| - "**.Rpro*" | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| paths-ignore: | |
| - "Meta**" | |
| - "memcheck**" | |
| - "data-raw**" | |
| - "docs**" | |
| - "inst**" | |
| - "man**" | |
| - "tests**" | |
| - "vignettes**" | |
| - "**.git" | |
| - "**.json" | |
| - "**.md" | |
| - "**.yml" | |
| - "!**revdepcheck.yml" | |
| - "**.R[dD]ata" | |
| - "**.Rpro*" | |
| schedule: | |
| - cron: '30 5 1 * *' | |
| name: revdep-check | |
| jobs: | |
| mem-check: | |
| runs-on: macos-latest | |
| name: revdepcheck, macOS, R release | |
| env: | |
| _R_CHECK_CRAN_INCOMING_: true # Seemingly not set by --as-cran | |
| _R_CHECK_FORCE_SUGGESTS_: false # CRAN settings | |
| R_COMPILE_AND_INSTALL_PACKAGES: 'never' | |
| _R_CHECK_THINGS_IN_CHECK_DIR_: false | |
| R_REMOTES_STANDALONE: true | |
| R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
| RSPM: ${{ matrix.config.rspm }} | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| R_BIOC_VERSION: 3.19 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: release | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - name: Cache R packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.R_LIBS_USER }} | |
| key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} | |
| restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- | |
| - name: Install dependencies | |
| run: | | |
| install.packages('pak', repos = 'https://r-lib.github.io/p/pak/dev/') | |
| pak::local_install_deps() | |
| pak::pkg_install('r-lib/revdepcheck') | |
| shell: Rscript {0} | |
| - name: Check reverse dependencies | |
| env: | |
| _R_CHECK_CRAN_INCOMING_REMOTE_: false | |
| run: | | |
| revdepcheck::revdep_reset() | |
| revdepcheck::revdep_check(num_workers=4) | |
| problems <- readLines('revdep/problems.md', warn = FALSE) | |
| if (length(problems) > 1) stop(paste0(problems, collapse= "\n")) | |
| shell: Rscript {0} | |
| - name: Upload check results | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: revdep-results | |
| path: revdep/*.md |