diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 54dffa1..322feee 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,15 +19,19 @@ jobs: with: python-version: '3.12' + + - name: Install UV package manager + run: | + python -m pip install uv + - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install -r requirements.txt + uv pip install -r requirements.txt - - name: Install dev depenecies + - name: Install dev dependencies run: | - python -m pip install black flake8 + uv add black flake8 - name: Run flake8 linting run: flake8 .