2021-01-20 08:25:24 +00:00
|
|
|
name: Linters
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-09-22 11:11:37 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-02-26 05:15:52 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 06:27:51 +00:00
|
|
|
- main
|
2021-09-22 11:11:37 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-01-20 08:25:24 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
flake8:
|
|
|
|
name: flake8
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 08:25:24 +00:00
|
|
|
- name: Set up Python
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/setup-python@v3
|
2021-01-20 08:25:24 +00:00
|
|
|
with:
|
2021-10-05 19:09:54 +00:00
|
|
|
python-version: '3.10'
|
2021-10-11 16:44:59 +00:00
|
|
|
- run: python -m pip install flake8
|
2021-01-20 08:25:24 +00:00
|
|
|
- name: flake8
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@v1
|
|
|
|
with:
|
|
|
|
linters: flake8
|
|
|
|
run: flake8
|
|
|
|
|
|
|
|
isort:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 08:25:24 +00:00
|
|
|
- name: Set up Python
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/setup-python@v3
|
2021-01-20 08:25:24 +00:00
|
|
|
with:
|
2021-10-05 19:09:54 +00:00
|
|
|
python-version: '3.10'
|
2021-02-26 11:42:38 +00:00
|
|
|
- run: python -m pip install isort
|
2021-01-20 08:25:24 +00:00
|
|
|
- name: isort
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@v1
|
|
|
|
with:
|
|
|
|
linters: isort
|
|
|
|
run: isort --check --diff django tests scripts
|
2022-02-03 14:49:14 +00:00
|
|
|
|
|
|
|
black:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-02-03 14:49:14 +00:00
|
|
|
- name: black
|
|
|
|
uses: psf/black@stable
|