Skip to content

feat: named task files #27

feat: named task files

feat: named task files #27

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: yezz123/setup-uv@v4
with:
uv-venv: "pypdown"
- name: Install dependencies
run: |
uv pip install .
uv pip install -r tests/requirements.txt
- name: Run tests
run: pytest
- name: Run type checking
run: mypy src/pypdown