PACKAGE-COVERAGE #22
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 for R CMD check and pkgdown | ||
# 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: R-CMD-check | ||
permissions: read-all | ||
jobs: | ||
R-CMD-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup R | ||
uses: r-lib/actions/setup-r@v2 | ||
- name: Install dependencies | ||
run: | | ||
install.packages('devtools') | ||
devtools::install_deps(dependencies = TRUE) | ||
- name: Run R CMD check | ||
run: R CMD check --as-cran . | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
needs: R-CMD-check # Esto asegura que pkgdown se ejecute después de R CMD check | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: r-lib/actions/setup-pandoc@v2 | ||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
- name: Deploy to GitHub Pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
run: pkgdown::deploy_site_github() | ||
ses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |