Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ jobs:
matrix:
config:
# testing R release with last shipped pandoc version in RStudio IDE and new pandoc
- {os: windows-latest, pandoc: '3.1.1', r: 'release'}
- {os: macOS-latest, pandoc: '3.1.1', r: 'release'}
- {os: ubuntu-latest, pandoc: 'devel', r: 'release'}
- {os: windows-latest, pandoc: '3.8.3', r: 'release'}
- {os: macOS-latest, pandoc: '3.8.3', r: 'release'}
- {os: ubuntu-latest, pandoc: 'nightly', r: 'release'}
# testing older pandoc versions
- {os: ubuntu-latest, pandoc: '3.1.1', r: 'release'}
- {os: ubuntu-latest, pandoc: '2.19.2', r: 'release'}
- {os: ubuntu-latest, pandoc: '2.18', r: 'release'}
- {os: ubuntu-latest, pandoc: '2.17.1.1', r: 'release'}
Expand All @@ -52,7 +53,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -70,13 +71,9 @@ jobs:
run: sudo dpkg -r pandoc

- uses: r-lib/actions/setup-pandoc@v2
if: matrix.config.pandoc != 'devel'
with:
pandoc-version: ${{ matrix.config.pandoc }}

- uses: cderv/actions/setup-pandoc-nightly@nightly-pandoc
if: matrix.config.pandoc == 'devel'

- name: Pandoc info
run: |
rmarkdown::find_pandoc()
Expand All @@ -90,7 +87,7 @@ jobs:
upload-snapshots: true

- name: Test coverage
if: success() && runner.os == 'Linux' && matrix.config.r == 'release' && matrix.config.pandoc == '2.19.2'
if: success() && runner.os == 'Linux' && matrix.config.r == 'release' && matrix.config.pandoc == '3.1.1'
run: |
pak::pkg_install('covr')
covr::codecov()
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/check-pandoc-daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -38,7 +38,9 @@ jobs:
shell: bash

- name: install pandoc devel
uses: cderv/actions/setup-pandoc-nightly@nightly-pandoc
uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: nightly

- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- uses: r-lib/actions/setup-r@v2
with:
Expand Down
Loading