Skip to content

Commit ffadeeb

Browse files
committed
Add testing workflow
Signed-off-by: Uilian Ries <uilianries@gmail.com>
1 parent 05e29cd commit ffadeeb

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/workflow.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)