Skip to content

Commit

Permalink
Update R-CMD-check.yaml
Browse files Browse the repository at this point in the history
should use the R command line tool to run R scripts or commands within the GitHub Actions workflow
  • Loading branch information
AlicenJoyHenning committed Aug 13, 2024
1 parent a219d26 commit 6a06ef3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:

- name: Install CRAN and GitHub dependencies
run: |
install.packages('devtools')
devtools::install_github('powellgenomicslab/DropletQC')
devtools::install_deps(dependencies = TRUE)
R -e "install.packages('devtools')"
R -e "devtools::install_github('powellgenomicslab/DropletQC')"
R -e "devtools::install_deps(dependencies = TRUE)"
- uses: r-lib/actions/check-r-package@v2
with:
Expand Down

0 comments on commit 6a06ef3

Please sign in to comment.