Skip to content

Remove MASS Null from nfindr_height #56

Remove MASS Null from nfindr_height

Remove MASS Null from nfindr_height #56

# READ-ONLY FILE
#
# Original file resides in r-hyperspec/pkg-skelton.
# DO NOT EDIT in any other repo as these changes will be overwritten.
# Edit at r-hyperspec/pkg-skelton, then push there and
# this file will be deployed to the other repos.
#
on:
push:
branches:
- release
- main
- master
- develop
# - auto-update
- auto-update-test
pull_request:
branches:
- release
- main
- master
- develop
name: Test coverage
jobs:
test-coverage:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./pkg/unmixR
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-pandoc@master
- uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: ./pkg/unmixR
extra-packages: |
any::covr
any::roxygen2
any::devtools
needs: |
coverage
- name: Roxygenize
working-directory: ./pkg/unmixR
run: |
# Vignettes are not needed for coverage tests
roclets <- roxygen2::load_options()$roclets
roclets <- roclets[!roclets %in% "vignette"]
devtools::document(roclets = roclets)
shell: Rscript {0}
- name: Test coverage
working-directory: ./pkg/unmixR
run: covr::codecov(quiet = FALSE)
shell: Rscript {0}