Skip to content

Commit

Permalink
Merge bbf9ded into bbf9221
Browse files Browse the repository at this point in the history
  • Loading branch information
quantophred committed Dec 16, 2019
2 parents bbf9221 + bbf9ded commit 5334803
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Python package

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: dev-install
run: |
python -m pip install --upgrade pip
etc/dev-install
- name: flake8
run: |
flake8 zipline tests
# stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: nosetests
run: |
nosetests

0 comments on commit 5334803

Please sign in to comment.