Skip to content

Switch from poetry to uv #195

Switch from poetry to uv

Switch from poetry to uv #195

Workflow file for this run

name: Typecheck
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --all-extras --dev
- name: Pylint and Pycodestyle
run: uv run pyright