Skip to content

Commit

Permalink
GHA try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
t-kalinowski committed Nov 7, 2023
1 parent ea678e6 commit 4bbbf67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ jobs:
key: ${{ matrix.os }}-${{ steps.setup-r.outputs.installed-r-version }}-${{ steps.get-date.outputs.year-week }}-2

- name: install dev reticulate
run: if(!require("remotes")) install.packages("remotes"); remotes::install_github("rstudio/reticulate")
run: if(!require("remotes", quietly = TRUE)) install.packages("remotes"); remotes::install_github("rstudio/reticulate")

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck local::.
extra-packages: any::rcmdcheck, local::.
cache-version: 1
upgrade: 'TRUE'
# upgrade: 'TRUE'

- name: Install Tensorflow + Keras deps
run: keras::install_keras(python_version = '${{ matrix.python }}')
Expand Down

0 comments on commit 4bbbf67

Please sign in to comment.