2021-01-20 09:25:24 +01:00
|
|
|
name: Linters
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-09-22 13:11:37 +02:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-02-26 06:15:52 +01:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 07:27:51 +01:00
|
|
|
- main
|
2021-09-22 13:11:37 +02:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2021-01-20 09:25:24 +01:00
|
|
|
|
2022-03-07 13:17:58 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-08-04 20:00:35 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-01-20 09:25:24 +01:00
|
|
|
jobs:
|
|
|
|
flake8:
|
|
|
|
name: flake8
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 10:56:31 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 09:25:24 +01:00
|
|
|
- name: Set up Python
|
2022-06-24 07:38:13 +02:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-20 09:25:24 +01:00
|
|
|
with:
|
2021-10-05 21:09:54 +02:00
|
|
|
python-version: '3.10'
|
2021-10-11 18:44:59 +02:00
|
|
|
- run: python -m pip install flake8
|
2021-01-20 09:25:24 +01:00
|
|
|
- name: flake8
|
2022-10-26 08:18:47 +02:00
|
|
|
# Pinned to v1.0.2.
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@e7d110d699a16b3dead9ef8b1f9470f93765ae95
|
2021-01-20 09:25:24 +01:00
|
|
|
with:
|
|
|
|
linters: flake8
|
|
|
|
run: flake8
|
|
|
|
|
|
|
|
isort:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 10:56:31 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-01-20 09:25:24 +01:00
|
|
|
- name: Set up Python
|
2022-06-24 07:38:13 +02:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-20 09:25:24 +01:00
|
|
|
with:
|
2021-10-05 21:09:54 +02:00
|
|
|
python-version: '3.10'
|
2021-02-26 12:42:38 +01:00
|
|
|
- run: python -m pip install isort
|
2021-01-20 09:25:24 +01:00
|
|
|
- name: isort
|
2022-10-26 08:18:47 +02:00
|
|
|
# Pinned to v1.0.2.
|
|
|
|
uses: liskin/gh-problem-matcher-wrap@e7d110d699a16b3dead9ef8b1f9470f93765ae95
|
2021-01-20 09:25:24 +01:00
|
|
|
with:
|
|
|
|
linters: isort
|
|
|
|
run: isort --check --diff django tests scripts
|
2022-02-03 15:49:14 +01:00
|
|
|
|
|
|
|
black:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 10:56:31 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-02-03 15:49:14 +01:00
|
|
|
- name: black
|
|
|
|
uses: psf/black@stable
|