Skip to content

test push

test push #5

Workflow file for this run

name: BiomaesteR Build Check and Tests
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install devtools
run:
Rscript -e "install.packages('devtools', repos = 'http://cran.us.r-project.org')"
- name: Build package
run:
Rscript -e "devtools::install()"
- name: Check package
run:
Rscript -e "devtools::check(vignettes = FALSE)"
- name: Run unit tests
run:
Rscript -e "devtools::test()"