diff --git a/.gitea/workflows/run_tests.yaml b/.gitea/workflows/run_tests.yaml new file mode 100644 index 0000000..9a29833 --- /dev/null +++ b/.gitea/workflows/run_tests.yaml @@ -0,0 +1,17 @@ +name: run tests +run-name: run tests +on: + push: + branches: + - main + +jobs: + build-and-deploy-documentation: + runs-on: linux_amd64 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Call to devtools::test() + run: | + Rscript -e 'devtools::test()'