Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
InkaSpy authored May 30, 2024
1 parent ab49eb8 commit 5b8a327
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install devtools
run: Rscript -e 'install.packages("devtools", repos = "https://cran.rstudio.com/")'
- name: Install dependencies
run: |
sudo apt-get -y build-dep libcurl4-gnutls-dev
sudo apt-get -y install libcurl4-gnutls-dev
- name: Install purrr
run: Rscript -e 'install.packages(c("purrr"))'
- name: Install dependencies
run: Rscript -e ' 'purrr::map(c("devtools", "lintr", "covr"), ~ if (!require(.x, character.only = TRUE)) install.packages(.x))'
- name: Install xeredar
run: Rscript -e "devtools::install()"
- name: Show session info
run: Rscript -e "devtools::session_info()"
Expand Down

0 comments on commit 5b8a327

Please sign in to comment.