Skip to content

Commit

Permalink
try running check on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Aug 23, 2024
1 parent 085dfc0 commit 2ef6116
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/R-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ jobs:
fail-fast: false
matrix:
config:
# - { os: windows-latest, r: 'release'}
# - { os: windows-latest, r: 'devel'}
- { os: windows-latest, r: 'release'}
- { os: macOS-latest, r: 'release'}
# - { os: macOS-latest, r: 'devel'}
- { os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}

env:
Expand All @@ -31,20 +29,25 @@ jobs:

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

- name: install macOS system dependencies
- name: Install macOS system dependencies
if: runner.os == 'macOS'
continue-on-error: true
run: |
brew install poppler
- name: Install system dependencies
- name: Install Linux system dependencies
if: runner.os == 'Linux'
env:
RHUB_PLATFORM: linux-x86_64-ubuntu-gcc
run: |
sudo add-apt-repository -y ppa:cran/poppler
sudo apt-get update
sudo apt-get install -y libpoppler-cpp-dev libpoppler-dev poppler-utils
- name: Install Poppler on Windows
if: matrix.os == 'windows-latest'
run: |
choco install --no-progress poppler
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 2ef6116

Please sign in to comment.