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 9ed60b0 commit ab73263Copy full SHA for ab73263
.github/workflows/R-CMD-check.yaml
@@ -65,6 +65,14 @@ jobs:
65
remotes::install_cran("rcmdcheck")
66
shell: Rscript {0}
67
68
+ - name: Install TensorFlow
69
+ run: |
70
+ Rscript -e "reticulate::install_miniconda()"
71
+ Rscript -e "reticulate::conda_create('r-reticulate', packages = 'python==3.6.9')"
72
+ Rscript -e "tensorflow::install_tensorflow(version='1.14.0')"
73
+ - name: Check
74
+ run: Rscript -e "rcmdcheck::rcmdcheck(args = '--no-manual', error_on = 'warning', check_dir = 'check')"
75
+
76
- name: Session info
77
run: |
78
options(width = 100)
0 commit comments