Skip to content

Commit e8f1b63

Browse files
committed
ci.yml v.2
1 parent ea6b649 commit e8f1b63

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2
2222

23-
- name: Install R and survey package
23+
# - name: Install R and survey package
24+
# run: |
25+
# sudo apt update
26+
# sudo apt install -y r-base
27+
# Rscript -e 'install.packages("survey", repos="https://cloud.r-project.org")'
28+
- name: Install survey R package
2429
run: |
25-
sudo apt update
26-
sudo apt install -y r-base
27-
Rscript -e 'install.packages("survey", repos="https://cloud.r-project.org")'
30+
mkdir -p $R_LIBS_USER
31+
Rscript -e 'install.packages("survey", repos = "https://cloud.r-project.org", lib = Sys.getenv("R_LIBS_USER"))'
2832
2933
- name: Set up Python
3034
uses: actions/setup-python@v2

0 commit comments

Comments
 (0)