Skip to content

Commit

Permalink
Final auto-test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ecnama committed Nov 30, 2024
1 parent c3f1791 commit 42aafe3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/r-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,20 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3


- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libharfbuzz-dev libfribidi-dev libfreetype6-dev pkg-config libcurl4-openssl-dev
- name: Setup R environment
uses: r-lib/actions/setup-r@v2
with:
r-version: 'latest'

- name: Install dependencies
- name: Install devtools and package dependencies
run: |
Rscript -e 'install.packages("devtools", dependencies = TRUE)'
Rscript -e 'install.packages("devtools", dependencies = NA)'
Rscript -e 'devtools::install_deps(dep = TRUE)'
- name: Run R tests
Expand Down

0 comments on commit 42aafe3

Please sign in to comment.