2021-01-20 16:25:24 +08:00
|
|
|
name: Linters
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-02-26 13:15:52 +08:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 14:27:51 +08:00
|
|
|
- main
|
2021-01-20 16:25:24 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
flake8:
|
|
|
|
name: flake8
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
2021-02-26 19:42:38 +08:00
|
|
|
- run: python -m pip install flake8
|
2021-01-20 16:25:24 +08:00
|
|
|
- name: flake8
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@v1
|
|
|
|
with:
|
|
|
|
linters: flake8
|
|
|
|
run: flake8
|
|
|
|
|
|
|
|
isort:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
2021-02-26 19:42:38 +08:00
|
|
|
- run: python -m pip install isort
|
2021-01-20 16:25:24 +08:00
|
|
|
- name: isort
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@v1
|
|
|
|
with:
|
|
|
|
linters: isort
|
|
|
|
run: isort --check --diff django tests scripts
|