summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNicolas Courty <ncourty@irisa.fr>2020-02-28 11:46:51 +0100
committerGitHub <noreply@github.com>2020-02-28 11:46:51 +0100
commit00535f30ba5374f95df0a9f0781a12bea37abf63 (patch)
treeff4d363ce36677928d9d828c26148c3eac07a5da /.github/workflows
parente23f4d0646a3e8d28cc146c28574359585295249 (diff)
parent81e9d425b905b1b7fc0ee888556e60c692d9bb18 (diff)
Merge branch 'master' into osx-issue
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pythonpackage.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
new file mode 100644
index 0000000..cb3baf8
--- /dev/null
+++ b/.github/workflows/pythonpackage.yml
@@ -0,0 +1,30 @@
+name: Test 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: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+ - name: Lint with flake8
+ run: |
+ pip install flake8
+ # 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