Skip to content

Commit 4f70b59

Browse files
authored
Merge pull request #16 from golony6449/feature/sponsor
fix: migrations은 black 검증에서 제외
2 parents b3f27c6 + 4ecc6e2 commit 4f70b59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy_on_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: psf/black@stable
1919
with:
20-
options: "--check --verbose"
20+
options: "--check --verbose --exclude migrations"
2121

2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v2

.github/workflows/deploy_on_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: psf/black@stable
1818
with:
19-
options: "--check --verbose"
19+
options: "--check --verbose --exclude migrations"
2020

2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v2

0 commit comments

Comments
 (0)