Skip to content

Commit

Permalink
add action to install curl if running on linux OS
Browse files Browse the repository at this point in the history
  • Loading branch information
evaham1 committed Sep 25, 2024
1 parent 760690b commit 63a0019
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,13 @@ jobs:
# sudo -s eval "$sysreqs"
# sudo apt-get update && sudo apt-get -y install libcurl4-openssl-dev

- name: Install curl for linux
if: runner.os == 'Linux'
env:
RHUB_PLATFORM: linux-x86_64-ubuntu-gcc
run: |
sudo apt-get update && sudo apt-get -y install libcurl4-openssl-dev
- name: Install dependencies 🔨
run: |
options(repos = c(CRAN = "https://cran.r-project.org"))
Expand Down

0 comments on commit 63a0019

Please sign in to comment.