Skip to content

fix: add py.typed to the project #45

fix: add py.typed to the project

fix: add py.typed to the project #45

Workflow file for this run

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