Skip to content

Commit

Permalink
add command to install libcurl
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeu1023 committed Apr 2, 2024
1 parent d0fdbac commit 3fa9c4a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies

- 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

- name: Install R dependencies
run: |
Rscript -e "options(warn=2); install.packages(c('remotes', 'covr')); remotes::install_deps(dependencies=TRUE)"
- name: Generate coverage report
run: Rscript -e "covr::codecov(quiet = FALSE)"

- name: Upload coverage reports to Codecov
uses: codecov/[email protected]

0 comments on commit 3fa9c4a

Please sign in to comment.