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 6735291 commit 6aa969aCopy full SHA for 6aa969a
.github/workflows/ci.yml
@@ -0,0 +1,38 @@
1
+name: Unit tests
2
+
3
+on:
4
+ pull_request: {}
5
+ push:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ javascript-test:
11
+ name: JavaScript Tests
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v2
18
19
+ - name: Install JavaScript dependencies
20
+ run: yarn install
21
22
+ - name: Run JavaScript tests
23
+ run: yarn test
24
25
+ python-test:
26
+ name: Python Tests
27
28
29
30
31
32
33
34
+ - name: Install Python dependencies
35
+ run: python3 -m pip install pytest
36
37
+ - name: Run Python tests
38
+ run: python3 -m pytest
.travis.yml
0 commit comments