cran release, upversion to 0.4.2 [skip vbump] (#213) #11
Workflow file for this run
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
--- | |
name: Release π | |
on: | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build package π | |
needs: release | |
uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
skip-r-cmd-check: true | |
skip-r-cmd-install: true | |
docs: | |
name: Pkgdown Docs π | |
needs: release | |
uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
default-landing-page: latest-tag | |
validation: | |
name: R Package Validation report π | |
needs: release | |
uses: insightsengineering/r.pkg.template/.github/workflows/validation.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
release: | |
name: Create release π | |
uses: insightsengineering/r.pkg.template/.github/workflows/release.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
r-cmd: | |
name: R CMD Check 𧬠| |
needs: [release, docs] | |
uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
additional-env-vars: | | |
_R_CHECK_CRAN_INCOMING_REMOTE_=false | |
additional-r-cmd-check-params: --as-cran | |
enforce-note-blocklist: true | |
note-blocklist: | | |
checking dependencies in R code .* NOTE | |
checking R code for possible problems .* NOTE | |
checking examples .* NOTE | |
checking Rd line widths .* NOTE | |
checking top-level files .* NOTE | |
unit-test-report-brand: >- | |
https://raw.githubusercontent.com/insightsengineering/hex-stickers/main/thumbs/teal.png | |
coverage: | |
name: Coverage π | |
needs: [release, docs] | |
uses: insightsengineering/r.pkg.template/.github/workflows/test-coverage.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} |