We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6b649 commit e8f1b63Copy full SHA for e8f1b63
.github/workflows/ci.yml
@@ -20,11 +20,15 @@ jobs:
20
steps:
21
- uses: actions/checkout@v2
22
23
- - name: Install R and survey package
+ # - 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
29
run: |
- sudo apt update
- sudo apt install -y r-base
- 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"))'
32
33
- name: Set up Python
34
uses: actions/setup-python@v2
0 commit comments