Skip to content

Commit

Permalink
Merge pull request #15 from djk2/ci-lint
Browse files Browse the repository at this point in the history
Ci lint
  • Loading branch information
djk2 committed Jan 24, 2020
2 parents bd18074 + df2a721 commit 548d957
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Python package

on: [push]

jobs:
build:

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

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-dev.txt
- name: Lint with flake8
run: |
flake8

0 comments on commit 548d957

Please sign in to comment.