split up workflows more evenly

This commit is contained in:
Nick Sweeting 2020-11-28 05:32:38 -05:00
parent 354fafe8b3
commit 675df49320
3 changed files with 101 additions and 84 deletions

31
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: 'Lint'
on: [push]
env:
MAX_LINE_LENGTH: 110
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
recursive: true
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
architecture: x64
- name: Install flake8
run: |
pip install flake8
- name: Lint with flake8
run: |
# one pass for show-stopper syntax errors or undefined names
flake8 archivebox --count --show-source --statistics
# one pass for small stylistic things
flake8 archivebox --count --max-line-length="$MAX_LINE_LENGTH" --statistics