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 05e29cd commit ffadeebCopy full SHA for ffadeeb
.github/workflows/workflow.yml
@@ -0,0 +1,17 @@
1
+name: Main workflow
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-16.04
6
+ strategy:
7
+ matrix:
8
+ python: [ '2.x', '3.x', 'pypy3' ]
9
+ name: Python ${{ matrix.python }} Testing
10
+ steps:
11
+ - uses: actions/checkout@master
12
+ - name: Setup python
13
+ uses: actions/setup-python@v1
14
+ with:
15
+ python-version: ${{ matrix.python }}
16
+ architecture: x64
17
+ - run: python tests/run_tests.py
0 commit comments