File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1717 - uses : actions/checkout@v2
1818 - uses : psf/black@stable
1919 with :
20- options : " --check --verbose --exclude migrations "
20+ options : " --check --verbose"
2121
2222 - name : Set up Python ${{ matrix.python-version }}
2323 uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 1616 - uses : actions/checkout@v2
1717 - uses : psf/black@stable
1818 with :
19- options : " --check --verbose --exclude migrations "
19+ options : " --check --verbose"
2020
2121 - name : Set up Python ${{ matrix.python-version }}
2222 uses : actions/setup-python@v2
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
2222
2323 - uses : psf/black@stable
2424 with :
25- options : " --check --verbose --exclude migrations "
25+ options : " --check --verbose"
2626
2727 - uses : isort/isort-action@master
2828 with :
29- configuration : " --check-only --diff --profile black "
29+ configuration : " --check-only --diff"
3030 requirementsFiles : " requirements.txt"
3131
3232 - name : install dependencies
Original file line number Diff line number Diff line change 1+ [tool .black ]
2+ line-length = 88
3+ include = ' \.pyi?$'
4+ extend-exclude = '''
5+ (
6+ migrations
7+ )
8+ '''
9+
10+ [tool .isort ]
11+ extend_skip = [" migrations" ]
12+ profile = " black"
You can’t perform that action at this time.
0 commit comments