Skip to content

Commit

Permalink
Restore no-pandoc action (#2102)
Browse files Browse the repository at this point in the history
Fixes #2078
  • Loading branch information
hadley committed Jun 1, 2022
1 parent d1321f9 commit 28e227f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/no-pandoc.yaml
@@ -0,0 +1,34 @@
# 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:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: no-pandoc

jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v2

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/setup-tinytex@v2

- run: sudo apt-get --purge remove pandoc
- run: rm -rf vignettes

- uses: r-lib/actions/check-r-package@v2

0 comments on commit 28e227f

Please sign in to comment.