Update AE table templates with modifications from chevron #209
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: Check 🛠 | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
audit: | |
if: github.event_name != 'push' | |
name: Audit Dependencies 🕵️♂️ | |
uses: insightsengineering/r.pkg.template/.github/workflows/audit.yaml@main | |
r-cmd: | |
name: R CMD Check 🧬 | |
uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
package-subdirectory: package | |
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 | |
linter: | |
if: github.event_name != 'push' | |
name: SuperLinter 🦸♀️ | |
uses: insightsengineering/r.pkg.template/.github/workflows/linter.yaml@main | |
links: | |
if: github.event_name != 'push' | |
name: Check URLs 🌐 | |
uses: insightsengineering/r.pkg.template/.github/workflows/links.yaml@main | |
vbump: | |
name: Version Bump 🤜🤛 | |
if: github.event_name == 'push' | |
uses: insightsengineering/r.pkg.template/.github/workflows/version-bump.yaml@main | |
secrets: | |
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
package-subdirectory: package | |
version: | |
name: Version Check 🏁 | |
uses: insightsengineering/r.pkg.template/.github/workflows/version.yaml@main | |
with: | |
package-subdirectory: package | |
licenses: | |
if: github.event_name != 'push' | |
name: License Check 🃏 | |
uses: insightsengineering/r.pkg.template/.github/workflows/licenses.yaml@main | |
style: | |
if: github.event_name != 'push' | |
name: Style Check 👗 | |
uses: insightsengineering/r.pkg.template/.github/workflows/style.yaml@main | |
with: | |
auto-update: true | |
grammar: | |
if: github.event_name != 'push' | |
name: Grammar Check 🔤 | |
uses: insightsengineering/r.pkg.template/.github/workflows/grammar.yaml@main |