Skip to content

PACKAGE-COVERAGE

PACKAGE-COVERAGE #22

Workflow file for this run

# 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:

Check failure on line 58 in .github/workflows/pkgdown.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pkgdown.yaml

Invalid workflow file

You have an error in your yaml syntax on line 58
clean: false
branch: gh-pages
folder: docs