Skip to content

Commit

Permalink
ci(test.yml): move devtools installation before run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bmascat committed Jun 24, 2024
1 parent 929f36b commit 43cb859
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,19 @@ jobs:
- name: Setup R
uses: r-lib/actions/setup-r@v2

- name: Set CRAN mirror and install renv and devtools
- name: Set CRAN mirror and install renv
run: |
options(repos = c(CRAN = "https://cloud.r-project.org"))
install.packages(c("renv", "devtools"))
install.packages("renv")
shell: Rscript {0}

- name: Install dependencies
uses: r-lib/actions/setup-renv@v2

- name: Install devtools
run: |
install.packages("devtools")
shell: Rscript {0}

- name: Run tests
run: |
Expand Down
Binary file modified results/figures/Fig1_cohort_description.pdf
Binary file not shown.
Binary file modified results/figures/Fig2_SS_analysis.pdf
Binary file not shown.
Binary file modified results/figures/Fig3_subgroups_phenotype_analysis.pdf
Binary file not shown.

0 comments on commit 43cb859

Please sign in to comment.