Skip to content

Add unit testing workflows #1

Add unit testing workflows

Add unit testing workflows #1

Workflow file for this run

on:
pull_request:
branches:
- main
name: Unit testing
jobs:
run_unit_tests:
runs-on: ubuntu-latests
steps:
- uses: actions/checkout@v3
- name: Install system dependencies
run: apt-get install -y libcurl-dev r-base
- name: Build package
run: R CMD build .
- name: Check package
run: R CMD check *.tar.gz