2021-01-20 16:25:24 +08:00
|
|
|
name: Linters
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-09-22 19:11:37 +08:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-02-26 13:15:52 +08:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 14:27:51 +08:00
|
|
|
- main
|
2021-09-22 19:11:37 +08:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-01-20 16:25:24 +08:00
|
|
|
|
2022-03-07 20:17:58 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-01-20 16:25:24 +08:00
|
|
|
jobs:
|
|
|
|
flake8:
|
|
|
|
name: flake8
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 17:56:31 +08:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 16:25:24 +08:00
|
|
|
- name: Set up Python
|
2022-03-07 17:56:31 +08:00
|
|
|
uses: actions/setup-python@v3
|
2021-01-20 16:25:24 +08:00
|
|
|
with:
|
2021-10-06 03:09:54 +08:00
|
|
|
python-version: '3.10'
|
2021-10-12 00:44:59 +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
|
2022-03-07 17:56:31 +08:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 16:25:24 +08:00
|
|
|
- name: Set up Python
|
2022-03-07 17:56:31 +08:00
|
|
|
uses: actions/setup-python@v3
|
2021-01-20 16:25:24 +08:00
|
|
|
with:
|
2021-10-06 03:09:54 +08:00
|
|
|
python-version: '3.10'
|
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
|
2022-02-03 22:49:14 +08:00
|
|
|
|
|
|
|
black:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 17:56:31 +08:00
|
|
|
uses: actions/checkout@v3
|
2022-02-03 22:49:14 +08:00
|
|
|
- name: black
|
|
|
|
uses: psf/black@stable
|