[🐛 fix: answer count 로직 12/16일 기준으로 재편성] #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Quality Checks | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Poetry | |
| run: | | |
| curl -sSL https://install.python-poetry.org | python3 - | |
| echo "${HOME}/.local/bin" >> $GITHUB_PATH | |
| - name: Install Packages & Libraries | |
| run: | | |
| poetry install | |
| - name: Run isort (Import sorting) | |
| run: | | |
| poetry run isort . --check --diff | |
| - name: Run black (Code formatting) | |
| run: | | |
| poetry run black . --check | |
| - name: Run Mypy | |
| run: | | |
| poetry run mypy . |