Skip to content

fixed citation in readme #55

fixed citation in readme

fixed citation in readme #55

Workflow file for this run

name: pkgcheck
# This will cancel running jobs once a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
# Manually trigger the Action under Actions/pkgcheck
workflow_dispatch:
# Run on every push to main
push:
branches:
- main
- master
jobs:
pkgcheck:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: r-lib/actions/setup-r@v2
- shell: Rscript {0}
run: |
if (!requireNamespace("MASS", quietly = TRUE))
install.packages("MASS")
library(MASS)
- uses: ropensci-review-tools/pkgcheck-action@main