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 985e98b commit b32ed7fCopy full SHA for b32ed7f
.github/workflows/r-ci.yml
@@ -43,12 +43,12 @@ jobs:
43
uses: actions/cache@v2
44
with:
45
path: ${{ env.R_LIBS_USER }}
46
- key: ${{ runner.os }}-r-facebook-survey-${{ steps.get-date.outputs.date }}
+ key: ${{ runner.os }}-r-facebook-survey-${{ steps.get-date.outputs.date }}-testcache
47
restore-keys: |
48
- ${{ runner.os }}-r-facebook-survey-
+ ${{ runner.os }}-r-facebook-survey-testcache
49
- name: Install R dependencies
50
run: |
51
- if ( packageVersion("readr") != "1.4.0" ) {
+ if ( !require("readr") || packageVersion("readr") != "1.4.0" ) {
52
install.packages("devtools")
53
devtools::install_version("readr", version = "1.4.0")
54
}
0 commit comments