Skip to content

Migrate to new targets statuses #104

Migrate to new targets statuses

Migrate to new targets statuses #104

Workflow file for this run

# 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, pull_request]
name: cover
jobs:
cover:
runs-on: ubuntu-latest
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-r-dependencies@v2
with:
extra-packages: any::covr
needs: coverage
- name: Git config
run: |
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
- name: Test coverage
run: covr::codecov(quiet = FALSE)
shell: Rscript {0}