Skip to content

Submit version 1.1.0 to CRAN #57

Submit version 1.1.0 to CRAN

Submit version 1.1.0 to CRAN #57

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:
branches: main
pull_request:
branches: main
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@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::rcmdcheck
needs: check
# Install remotes and development version of canprot 20240228
# https://stackoverflow.com/questions/76642914/use-a-github-package-for-a-r-github-action
- name: Install remotes
run: |
Rscript -e "install.packages('remotes', repos='https://ftp.belnet.be/mirror/CRAN')"
- name: Install development version of canprot
run: |
Rscript -e "remotes::install_github('jedick/canprot')"
- uses: r-lib/actions/check-r-package@v2