datasummary_skim save to file with tinytable #117
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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
release: | |
types: [published] | |
workflow_dispatch: | |
name: altdoc | |
jobs: | |
altdoc: | |
runs-on: ubuntu-latest | |
# Only restrict concurrency for non-PR jobs | |
concurrency: | |
group: altdoc-${{ github.event_name != 'pull_request' || github.run_id }} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
- name: tinytex | |
run: quarto install tinytex | |
- name: Get Script | |
run: curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh | |
- name: Bootstrap | |
run: ./run.sh bootstrap | |
- name: Altdoc dev | |
run: ./run.sh install_github etiennebacher/altdoc | |
- name: parameters dev | |
run: ./run.sh install_github easystats/parameters | |
- name: tinytable dev | |
run: ./run.sh install_github vincentarelbundock/tinytable | |
- name: Dependencies | |
run: ./run.sh install_all | |
- name: Pandoc binary | |
run: Rscript -e "pandoc::pandoc_install()" | |
- name: Build site | |
run: | | |
# If parallel = TRUE in render_docs() | |
# future::plan(future::multicore) | |
install.packages(".", repos = NULL, type = "source") | |
modelsummary::config_modelsummary(factory_default = "tinytable") | |
install.packages("pkgload") | |
pkgload::load_all() | |
altdoc::render_docs(parallel = FALSE, freeze = FALSE, verbose = TRUE) | |
shell: Rscript {0} | |
- name: Deploy to GitHub pages 🚀 | |
if: github.event_name != 'pull_request' | |
uses: JamesIves/[email protected] | |
with: | |
clean: false | |
branch: gh-pages | |
folder: docs |