chore(deps): Update dependency fastapi to v0.123.9 #192
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: Lint and Format Check | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.14' | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Python dev dependencies | |
| run: | | |
| python -m venv .venv | |
| source .venv/bin/activate | |
| pip install -r requirements-dev.txt | |
| - name: Install Node.js dependencies | |
| run: npm install | |
| - name: Run Black (Python) | |
| run: | | |
| source .venv/bin/activate | |
| black --check . | |
| - name: Run isort (Python) | |
| run: | | |
| source .venv/bin/activate | |
| isort --check-only . | |
| - name: Run flake8 (Python) | |
| run: | | |
| source .venv/bin/activate | |
| flake8 . | |
| - name: Run djlint (Jinja) | |
| run: | | |
| source .venv/bin/activate | |
| djlint templates/ --check --profile=jinja | |
| - name: Run ESLint (JS) | |
| run: npm run lint:js | |
| - name: Run Stylelint (CSS) | |
| run: npm run lint:css | |
| - name: Run Prettier check (JS/CSS) | |
| run: npm run prettier:check |