Update R-CMD-check.yaml #106
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
| # READ-ONLY FILE | |
| # | |
| # Original file resides in r-hyperspec/pkg-skelton. | |
| # DO NOT EDIT in any other repo as these changes will be overwritten. | |
| # Edit at r-hyperspec/pkg-skelton, then push there and | |
| # this file will be deployed to the other repos. | |
| # | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main, master, develop, release, auto-update-test] | |
| pull_request: | |
| branches: [main, master, develop, release] | |
| schedule: | |
| # (see https://crontab.guru) | |
| - cron: "20 4 * */2 THU" | |
| name: R-CMD-check | |
| jobs: | |
| R-CMD-check: | |
| runs-on: ${{ matrix.config.os }} | |
| name: ${{ matrix.config.os }} (R-${{ matrix.config.r }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - {os: macOS-latest, r: 'release'} | |
| - {os: windows-latest, r: 'release'} | |
| - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | |
| - {os: ubuntu-latest, r: 'release'} | |
| - {os: ubuntu-latest, r: 'oldrel'} | |
| permissions: | |
| contents: read | |
| # concurrency: | |
| # group: ${{ github.workflow }}-${{ github.ref }} | |
| # cancel-in-progress: ${{ github.ref != 'refs/heads/release' && github.ref != 'refs/heads/main' }} | |
| env: | |
| R_KEEP_PKG_SOURCE: yes | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.config.r }} | |
| http-user-agent: ${{ matrix.config.http-user-agent }} | |
| use-public-rspm: true | |
| extra-repositories: "https://r-hyperspec.github.io/pkg-repo/" | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::rcmdcheck, any::devtools, local::. | |
| needs: check | |
| # roxygen2 7.3.x parser_setMethod calls methods::getMethod() which fails | |
| # in clean Rscript sessions for S4 methods on primitives like [[, [, $. | |
| # Pin to 7.2.3 until roxygen2 resolves this. | |
| - name: "Install roxygen2 7.2.3" | |
| run: | | |
| remotes::install_version("roxygen2", "7.2.3") | |
| shell: Rscript {0} | |
| - name: Roxygenize | |
| run: | | |
| devtools::document() | |
| shell: Rscript {0} | |
| - uses: r-lib/actions/check-r-package@v2 | |
| with: | |
| upload-snapshots: true | |
| - name: Show R-CMD-check log as step summary | |
| if: always() | |
| shell: bash | |
| run: | | |
| find check -name '00check.log' -exec sh -c 'echo "### $1"; cat "$1"' _ {} \; >> $GITHUB_STEP_SUMMARY || true | |