Skip to content

feat: introduce eligibility route model #55

feat: introduce eligibility route model

feat: introduce eligibility route model #55

Workflow file for this run

name: PDF signer
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: pdf-signer-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
working-directory: services/pdf-signer
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: services/pdf-signer/.python-version
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
run: uv sync --locked --dev
- name: Lint
run: uv run ruff check .
- name: Format check
run: uv run ruff format --check .
- name: Type check
run: uv run pyright
- name: Test
run: uv run pytest