We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053f2d5 commit 17c07a2Copy full SHA for 17c07a2
.github/workflows/python-tests.yml
@@ -3,7 +3,7 @@ name: Python tests
3
on: [push]
4
5
jobs:
6
- build:
+ python:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
.github/workflows/r-tests.yml
@@ -0,0 +1,11 @@
1
+name: R tests
2
+on: [push]
+jobs:
+ r:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check out repository code
+ uses: actions/checkout@v2
+ - name: Install R
10
+ - uses: r-lib/actions/setup-r@v1
11
+ # TODO install dependencies and run tests
0 commit comments