Skip to content

Commit 17c07a2

Browse files
committed
ASA-150: initialize R github action
1 parent 053f2d5 commit 17c07a2

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Python tests
33
on: [push]
44

55
jobs:
6-
build:
6+
python:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:

.github/workflows/r-tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: R tests
2+
on: [push]
3+
jobs:
4+
r:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Check out repository code
8+
uses: actions/checkout@v2
9+
- name: Install R
10+
- uses: r-lib/actions/setup-r@v1
11+
# TODO install dependencies and run tests

0 commit comments

Comments
 (0)