Skip to content

Commit

Permalink
Added github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jun 21, 2020
1 parent d1b7b89 commit 0b35b5f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,16 @@
name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, rc]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- run: python --version
- run: pip install -r requirements.txt
- run: pip install -r extra.txt
- run: ADAPTER=tiny HTTPBIN=httpbin.bemisc.com python setup.py test

0 comments on commit 0b35b5f

Please sign in to comment.