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 3a3b2b4 commit 171c5ffCopy full SHA for 171c5ff
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+name: Build
2
+on: [push,pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ python-version:
9
+ - 2.7
10
+ - 3.4
11
+ - 3.5
12
+ - 3.6
13
+ - 3.7
14
+ - 3.8
15
+ name: Python ${{ matrix.python-version }} sample
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: actions/setup-python@v3
19
+ with:
20
+ python-version: ${{ matrix.python-version }}
21
+ - run: pip install -r requirements.txt
22
+ - run: pip install -r test-requirements.txt
23
+ - run: python setup.py develop
24
+ - env:
25
+ DETECTLANGUAGE_API_KEY: ${{ secrets.DETECTLANGUAGE_API_KEY }}
26
+ run: nosetests
0 commit comments