fix: add py.typed to the project #45
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: Check Format Workflow | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.14'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install uv | |
| uv sync --all-groups | |
| - name: black | |
| run: | | |
| uv run black --check mypy_pure | |
| - name: flake8 | |
| run: | | |
| uv run flake8 mypy_pure | |
| - name: isort | |
| run: | | |
| uv run isort --check-only mypy_pure | |
| - name: mypy | |
| run: | | |
| uv run mypy mypy_pure | |
| - name: ruff | |
| run: | | |
| uv run ruff check mypy_pure |