Skip to content

Commit

Permalink
Create pythonapp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dansan committed Nov 25, 2019
1 parent 5bb114a commit 95626e4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Python application

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8]

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 docs setup.py docs tests udm_rest_client update_openapi_client
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 --count --exit-zero --max-complexity=10 --statistics --max-line-length=90 docs setup.py docs tests udm_rest_client update_openapi_client
- name: Lint with black
run: |
pip install black
black --check --target-version py36 docs setup.py tests udm_rest_client update_openapi_client
- name: Lint with isort
run: |
pip install isort
isort --check-only --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive docs setup.py tests udm_rest_client update_openapi_client

0 comments on commit 95626e4

Please sign in to comment.