We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9069e6 commit c471990Copy full SHA for c471990
1 file changed
.github/workflows/ci.yaml
@@ -74,6 +74,12 @@ jobs:
74
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "24.04", "./packages/nimble"))')
75
sudo apt-get install libcurl4-openssl-dev # needed for R pkg curl -> covr
76
77
+ - name: Install rlang (Windows) to try to fix install failure
78
+ if: runner.os == 'Windows'
79
+ run: |
80
+ install.packages('rlang')
81
+ shell: Rscript {0}
82
+
83
- name: Install dependencies
84
run: |
85
source('install_requirements.R') # Windows doesn't like running via ./install_requirements.R
0 commit comments