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 1313 runs-on : macOS-latest
1414 env :
1515 GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
16- RETICULATE_MINICONDA_PATH : ' ../miniconda/'
1716 steps :
1817 - uses : actions/checkout@v2
1918
4443
4544 - name : Install TensorFlow
4645 run : |
46+ Rscript -e "remotes::install_github('rstudio/reticulate')"
4747 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')"
5051
5152 - name : Test coverage
5253 run : covr::codecov()
You can’t perform that action at this time.
0 commit comments