Skip to content

Updates Models

Updates Models #146

Workflow file for this run

name: Linting and Typing
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Run Ruff
uses: astral-sh/[email protected]
with:
src: "./src"
args: check --select E,F,I --fix
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run MyPy
run: poetry run mypy src/ --ignore-missing-imports