From 0298443c8b4ca653328bcd4a2173aa8ae680b17f Mon Sep 17 00:00:00 2001 From: bsweger Date: Thu, 18 Jan 2024 13:07:42 -0500 Subject: [PATCH] Remove explicit installs of zoltr and covidData Let's see what happens when we remove the build steps that install zoltr and covidData (since these two packages are already listed as dependencies in covidHubUtils) --- .github/workflows/r_cmd_check.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/r_cmd_check.yaml b/.github/workflows/r_cmd_check.yaml index f27713c..678402f 100644 --- a/.github/workflows/r_cmd_check.yaml +++ b/.github/workflows/r_cmd_check.yaml @@ -24,19 +24,6 @@ jobs: devtools::install_github("epiforecasts/scoringutils@v1.2.2") devtools::install_deps(dependencies = TRUE) shell: Rscript {0} - - name: Install zoltr - run: | - devtools::install_github("reichlab/zoltr") - devtools::install() - shell: Rscript {0} - - name: Checkout covidData - uses: actions/checkout@v3 - with: - repository: reichlab/covidData - path: covidData - - name: Install covidData - run: make recent_data - working-directory: ./covidData/code/data-processing - name: Check run: | devtools::check(args = c("--no-tests", "--no-manual", "--no-vignettes"),error_on = "error")