Skip to content

Commit

Permalink
update revdepcheck workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcallaway11 committed Jan 8, 2025
1 parent db81af7 commit e9b056e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/revdep-check-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,25 @@ jobs:
with:
r-version: 'release'

- name: Install dependencies
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev \
libfreetype6-dev \
libfontconfig1-dev \
libharfbuzz-dev \
libfribidi-dev \
libpng-dev \
libjpeg-dev \
libtiff5-dev \
gfortran \
libblas-dev \
liblapack-dev
- name: Install R dependencies
run: |
Rscript -e "install.packages(c('remotes', 'revdepcheck', 'testthat'))"
Rscript -e "remotes::install_deps(dependencies = TRUE)"
Expand Down

0 comments on commit e9b056e

Please sign in to comment.