use new functions for hook lengths #283
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
# Workflow derived from https://github.com/r-lib/actions/tree/master/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: | |
branches: [main, master] | |
name: R-CMD-check-with-valgrind | |
jobs: | |
R-CMD-check-with-valgrind: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
RGL_USE_NULL: TRUE | |
_R_CHECK_USE_VALGRIND_: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install system dependencies | |
env: | |
RHUB_PLATFORM: linux-x86_64-ubuntu-gcc | |
run: | | |
sudo apt-get install --yes valgrind | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- name: Install remotes | |
run: | | |
Rscript -e "install.packages('remotes', repos='https://ftp.belnet.be/mirror/CRAN')" | |
- name: Install qspray and ratioOfQsprays from Github | |
run: | | |
Rscript -e "remotes::install_github(c('stla/qspray', 'stla/ratioOfQsprays'))" | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck | |
needs: check | |
- name: Check with valgrind | |
run: rcmdcheck::rcmdcheck(build_args = "--no-build-vignettes", args = c("--use-valgrind", "--no-manual", "--ignore-vignettes"), error_on = "never", check_dir = "check") | |
shell: Rscript {0} | |
- name: Upload check results | |
uses: actions/upload-artifact@master | |
with: | |
name: ${{ runner.os }}-rrelease-results | |
path: check |