Skip to content

docs: 🚧 separate algorithm vignette, plus pseudocode for internals #4

docs: 🚧 separate algorithm vignette, plus pseudocode for internals

docs: 🚧 separate algorithm vignette, plus pseudocode for internals #4

Workflow file for this run

# 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:
pull_request:
branches: main
name: Build package
permissions: read-all
jobs:
style:
uses: ./.github/workflows/reusable-style.yaml
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
document:
uses: ./.github/workflows/reusable-document.yaml
needs: style
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
cran-check:
uses: ./.github/workflows/reusable-cran-check.yaml
needs: document
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
pkgdown:
uses: ./.github/workflows/reusable-pkgdown.yaml
needs: cran-check
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}