Skip to content

Fix due to changes in {marginaleffects} #1822

Fix due to changes in {marginaleffects}

Fix due to changes in {marginaleffects} #1822

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
pull_request:
branches:
- master
name: revdepcheck
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
revdepcheck:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
if: startsWith(github.head_ref, 'rc')
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "3.1"
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
extra-packages: |
r-lib/revdepcheck
local::.
- name: Revdepcheck
run: |
options(crayon.enabled = TRUE)
library(revdepcheck)
revdep_check(num_workers = 4)
revdep_report()
revdep_reset()
shell: Rscript {0}
#- uses: stefanzweifel/git-auto-commit-action@v4