test/.drone.yml

19 lines
296 B
YAML

kind: pipeline
type: docker
name: main
steps:
- name: compile
image: r-arch
pull: never
commands:
- cd tests
- R -f test_compile.R
- R CMD INSTALL $(git rev-parse --show-toplevel)
- name: main_function
image: r-arch
pull: never
commands:
- cd tests
- R -f "test_mainfun.R"