Skip to content

Do not evaluate failing mlr3::lrn chunk (#1111 hotfix) #1483

Do not evaluate failing mlr3::lrn chunk (#1111 hotfix)

Do not evaluate failing mlr3::lrn chunk (#1111 hotfix) #1483

Workflow file for this run

name: Render Book
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache R packages
uses: actions/cache@v2
with:
path: ~/.R
key: ${{ runner.os }}-R-${{ hashFiles('**/*.Rmd') }}
restore-keys: |
${{ runner.os }}-R-
- name: Install Dependencies
run: |
Rscript -e 'install.packages("geocompkg", repos = c("https://geocompr.r-universe.dev", "https://cloud.r-project.org"), dependencies = TRUE, force = TRUE)'
- name: Render Book
run: |
Rscript -e 'bookdown::render_book("index.Rmd")'