Skip to content

Commit

Permalink
try running for 60 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
njtierney committed Nov 8, 2024
1 parent 5181ce6 commit 2695d75
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

timeout-minutes: 30
timeout-minutes: 60

name: ${{ matrix.config.os }} (${{ matrix.config.r }}) (${{ matrix.config.tf }})

Expand Down Expand Up @@ -56,9 +56,7 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

- name: Install remotes
if: steps.r-package-cache.outputs.cache-hit != 'true'
run: install.packages("remotes")


- name: Install system dependencies
if: runner.os == 'Linux'
Expand All @@ -71,6 +69,10 @@ jobs:
sudo $cmd
done < <(Rscript -e "writeLines(remotes::system_requirements('$ID-$VERSION_ID'))")
- name: Install remotes
if: steps.r-package-cache.outputs.cache-hit != 'true'
run: install.packages("remotes")

- name: Install package + deps
run: remotes::install_local(dependencies = TRUE, force = TRUE)

Expand Down

0 comments on commit 2695d75

Please sign in to comment.