Do not evaluate failing mlr3::lrn chunk (#1111 hotfix) #1858
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dev-pkgs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: geocompr/geocompr:suggests | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v1 | |
- name: Build book | |
run: | | |
Rscript -e 'remotes::install_github("r-spatial/sf")' | |
Rscript -e 'remotes::install_github("r-spatial/stars")' | |
Rscript -e 'remotes::install_github("rspatial/terra")' | |
Rscript -e 'remotes::install_github("geocompx/geocompkg", dependencies = TRUE, force = TRUE)' | |
Rscript -e 'bookdown::render_book("index.Rmd")' | |