-
Notifications
You must be signed in to change notification settings - Fork 433
44 lines (37 loc) · 908 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
- master
- pypi-release
pull_request:
branches:
- main
- master
- pypi-release
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install black flake8 isort
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
black_args: "--check"
flake8: false
- name: Sort imports
uses: isort/[email protected]
with:
configuration: --check-only --diff --profile black