1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00
ArchiveBox/.github/workflows/lint.yml

36 lines
767 B
YAML
Raw Permalink Normal View History

name: Run linters
2020-11-28 23:44:37 +13:00
on:
workflow_dispatch:
push:
2020-11-28 23:32:38 +13:00
env:
MAX_LINE_LENGTH: 110
jobs:
lint:
runs-on: ubuntu-20.04
2020-11-28 23:32:38 +13:00
steps:
- uses: actions/checkout@v2
with:
2020-11-28 23:48:45 +13:00
submodules: true
2020-11-28 23:32:38 +13:00
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
2020-11-28 23:44:37 +13:00
python-version: 3.9
2020-11-28 23:32:38 +13:00
architecture: x64
- name: Install flake8
run: |
pip install flake8
- name: Lint with flake8
run: |
2021-04-24 16:09:48 +12:00
cd archivebox
2020-11-28 23:32:38 +13:00
# one pass for show-stopper syntax errors or undefined names
2021-04-24 16:09:48 +12:00
flake8 . --count --show-source --statistics
2020-11-28 23:32:38 +13:00
# one pass for small stylistic things
2021-04-24 16:09:48 +12:00
flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics