Skip to content

New Git Action, build and unit tests #1

New Git Action, build and unit tests

New Git Action, build and unit tests #1

Workflow file for this run

name: BiomaesteR Build Check and Tests
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:

Check failure on line 14 in .github/workflows/build_test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_test.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
- 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()"