File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : macOS-latest
14
14
env :
15
15
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
16
- RETICULATE_MINICONDA_PATH : ' ../miniconda/'
17
16
steps :
18
17
- uses : actions/checkout@v2
19
18
44
43
45
44
- name : Install TensorFlow
46
45
run : |
46
+ Rscript -e "remotes::install_github('rstudio/reticulate')"
47
47
Rscript -e "reticulate::install_miniconda()"
48
- Rscript -e "reticulate::conda_create('r-reticulate', packages = 'python==3.6.9', conda = '../miniconda/bin/conda')"
49
- Rscript -e "tensorflow::install_tensorflow(version='1.14.0', conda = '../miniconda/bin/conda')"
48
+ echo "options(reticulate.conda_binary = reticulate:::miniconda_conda())" >> .Rprofile
49
+ Rscript -e "reticulate::conda_create('r-reticulate', packages = 'python==3.6.9')"
50
+ Rscript -e "tensorflow::install_tensorflow(version='1.14.0')"
50
51
51
52
- name : Test coverage
52
53
run : covr::codecov()
You can’t perform that action at this time.
0 commit comments