* ✨ (typescript_test.yml): add workflow_dispatch event to trigger workflow manually with branch input parameter 🔧 (typescript_test.yml): update workflow to checkout code from the specified branch when triggered manually * 📝 (lint-py.yml): update linting workflow to trigger on specific pull request events and checks requested action 📝 (lint-py.yml): add a specific job to run Mypy for static type checking in the linting workflow * 🔧 (python_test.yml): update pull_request event types and branches to trigger on more actions for better test coverage and integration
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: Lint Python
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "poetry.lock"
|
|
- "pyproject.toml"
|
|
- "src/backend/**"
|
|
- "tests/**"
|
|
merge_group:
|
|
types: [checks_requested]
|
|
env:
|
|
POETRY_VERSION: "1.8.2"
|
|
|
|
jobs:
|
|
lint:
|
|
name: Run Mypy
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version:
|
|
- "3.12"
|
|
- "3.11"
|
|
- "3.10"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
|
uses: "./.github/actions/poetry_caching"
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
poetry-version: ${{ env.POETRY_VERSION }}
|
|
cache-key: ${{ runner.os }}-poetry-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }}
|
|
- name: Install Python dependencies
|
|
run: |
|
|
poetry env use ${{ matrix.python-version }}
|
|
poetry install
|
|
- name: Run Mypy
|
|
run: |
|
|
make lint
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.github_token }}
|