#145 request_registry_filter to new file, add tests, bump version, ad… #7
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 | |
| name: revdep | |
| jobs: | |
| revdep: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.event.head_commit.message, 'REVDEPCHECK') | |
| name: ubuntu-latest (release) | |
| strategy: | |
| fail-fast: false | |
| env: | |
| R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
| GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: release | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: | | |
| any::pak | |
| - name: temporary fix, need dev crul | |
| run: | | |
| install.packages("pak") | |
| pak::pak(c("ropensci/crul", "ropensci/vcr")) | |
| shell: Rscript {0} | |
| - name: Revdepcheck | |
| run: | | |
| Rscript -e "pak::pak('r-lib/revdepcheck')" \ | |
| -e "revdepcheck::revdep_reset()" \ | |
| -e "revdepcheck::revdep_check(num_workers=12)" | |
| - name: Upload revdepcheck results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ubuntu-latest-r-release-results | |
| path: revdep/*.md |