Skip to content

Commit

Permalink
ci(test.yml): add install system dependencies step
Browse files Browse the repository at this point in the history
  • Loading branch information
bmascat committed Jun 24, 2024
1 parent 06d99dc commit 532fce3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
- name: Setup R
uses: r-lib/actions/setup-r@v2

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev
shell: bash

- name: Set CRAN mirror and install renv
run: |
options(repos = c(CRAN = "https://cloud.r-project.org"))
Expand Down

0 comments on commit 532fce3

Please sign in to comment.