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 54d0892 commit 9149b1bCopy full SHA for 9149b1b
.github/FUNDING.yml .github/funding.yml.github/FUNDING.yml renamed to .github/funding.yml
.github/workflows/test.yml
@@ -0,0 +1,23 @@
1
+name: Run tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ python: ['2.7', '3.6']
12
13
+ name: Python ${{ matrix.python }} test
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
18
+ - uses: actions/setup-python@v2
19
+ with:
20
+ python-version: ${{ matrix.python }}
21
22
+ - name: Run tests
23
+ run: cd tests/ && python -m unittest test_beta_code
.travis.yml
0 commit comments