Skip to content

order of variable levels with marginal prediction #462

order of variable levels with marginal prediction

order of variable levels with marginal prediction #462

Workflow file for this run

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
name: Render README
jobs:
render:
name: Render README
runs-on: macOS-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
crayon.enabled: 'FALSE'
- uses: r-lib/actions/setup-pandoc@v2
- name: Install rmarkdown, remotes, and the local package
run: |
install.packages("remotes", type = "binary", repos = "http://cran.rstudio.com/")
remotes::install_local(".", type = "binary", repos = "http://cran.rstudio.com/", dependencies = TRUE)
shell: Rscript {0}
- name: Render README
run: Rscript -e 'rmarkdown::render("README.Rmd")'
- name: Commit results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git commit README.md -m 'Re-build README.Rmd' || echo "No changes to commit"
git push origin || echo "No changes to commit"