Add .gitea/workflows/r-test.yml
Some checks failed
CI Demo / build (push) Successful in 4s
Docker Test / docker-ops (push) Successful in 5s
Go Test / go-test (push) Has been cancelled
Java Test / java-hello (push) Has been cancelled
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-test (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
PHP Test / php-test (push) Has been cancelled
Python Test / python-hello (push) Has been cancelled
R Test / r-cmdcheck (push) Has been cancelled
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled

This commit is contained in:
2025-08-07 18:56:55 +00:00
parent e7d79cf4f7
commit 4d1c0a24b5

View File

@@ -0,0 +1,19 @@
name: R Test
on: [push]
jobs:
r-cmdcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
Rscript -e 'install.packages(c("devtools","testthat"), repos="https://cloud.r-project.org")'
- name: Run tests
run: |
Rscript -e 'devtools::test()'