Skip to content

Commit

Permalink
ud install dependencies and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahhamadeh committed Apr 16, 2024
1 parent 4c5bbaa commit bdd3480
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/install_dependencies.R
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
install.packages(c('testthat','rmarkdown','spelling'), repos = 'http://cran.us.r-project.org', type='win.binary')
install.packages(c('ggplot2','shiny','shinyTree','shinyjs','dplyr','SobolSequence','writexl','tictoc'), repos = 'http://cran.us.r-project.org', type='win.binary')
install.packages('https://github.com/Open-Systems-Pharmacology/rClr/releases/download/v0.9.1/rClr_0.9.1.zip', repos = NULL, type = 'binary')
download.file('https://ci.appveyor.com/api/projects/open-systems-pharmacology-ci/ospsuite-rutils/artifacts/ospsuite.utils.zip?pr=false', destfile = 'ospsuite.utils.zip', mode='wb')
install.packages('ospsuite.utils.zip', repos = NULL, type = 'binary')
unlink('ospsuite.utils.zip')
download.file('https://ci.appveyor.com/api/projects/open-systems-pharmacology-ci/tlf-library/artifacts/tlf.zip?pr=false', destfile = 'tlf.zip', mode='wb')
install.packages('tlf.zip', repos = NULL, type = 'binary')
unlink('tlf.zip')
download.file('https://ci.appveyor.com/api/projects/open-systems-pharmacology-ci/ospsuite-r/artifacts/ospsuite.zip?pr=false', destfile = 'ospsuite.zip', mode='wb')
install.packages('ospsuite.zip', repos = NULL, type = 'binary')
unlink('ospsuite.zip')
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: r-lib/actions/setup-r@v2
Expand Down

0 comments on commit bdd3480

Please sign in to comment.