Skip to content

Commit

Permalink
Merged origin/main into fix_workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
llrs committed Feb 1, 2025
2 parents b0928ad + e4369dc commit 28ca263
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ inst/source/*tar.gz
inst/*.rds
-tests$
^validation_report_*.html$
^\.github$
^_pkgdown\.yml$
^docs$
^pkgdown$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
39 changes: 39 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 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:
push:
branches: [main, master]
pull_request:

name: R-CMD-check.yaml

permissions: read-all

jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: quarto-dev/quarto-actions/setup@v2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tinytex: true

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--compact-vignettes=gs+qpdf")'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ inst/source/*Rcheck
inst/source/*tar.gz
inst/source/
inst/checks/
docs
1 change: 1 addition & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ knitr::opts_chunk$set(

<!-- badges: start -->
[![Codecov test coverage](https://codecov.io/gh/pharmaR/riskreports/graph/badge.svg)](https://app.codecov.io/gh/pharmaR/riskreports)
[![R-CMD-check](https://github.com/pharmaR/riskreports/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/pharmaR/riskreports/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

The goal of riskreports is to documents results of package checks for validation.
Expand Down

0 comments on commit 28ca263

Please sign in to comment.