Skip to content

Commit ad9f0e4

Browse files
committed
test workflow
1 parent 502b9ba commit ad9f0e4

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: datalab-action-test
2+
3+
on:
4+
push:
5+
branches: [ datalab ]
6+
pull_request:
7+
branches: [ datalab ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
name: datalab-test
13+
steps:
14+
- name: checkout
15+
uses: actions/checkout@v2
16+
- name: test
17+
id: test
18+
uses: pamoreno/datalab-action@v1
19+
with:
20+
target: 'test'
21+
22+
grade:
23+
runs-on: ubuntu-latest
24+
name: datalab-grade
25+
steps:
26+
- name: checkout
27+
uses: actions/checkout@v2
28+
- name: grade
29+
id: grade
30+
uses: pamoreno/datalab-action@v1
31+
with:
32+
target: 'grade'
33+
- name: Get the output log
34+
run: echo "The result was ${{ steps.grade.outputs.result }}"

0 commit comments

Comments
 (0)