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 feff9da commit 2e8f5e2Copy full SHA for 2e8f5e2
.github/workflows/ot.yml
@@ -0,0 +1,26 @@
1
+name: Opentok Actions
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python-version: [2.7, 3.5, 3.6, 3.7]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Install dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install -r test_requirements.txt
23
+ pip install -r requirements.txt
24
+ - name: Test with nosetests
25
26
+ nosetests -v tests/test_*
0 commit comments