Skip to content

WIP migrate to uv package manager, fixing package compatibility issues #249

WIP migrate to uv package manager, fixing package compatibility issues

WIP migrate to uv package manager, fixing package compatibility issues #249

Workflow file for this run

name: black isort
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install black and isort
run: |
uv pip install black==23.3.0 isort
- name: Running Black
run: |
black --check --diff --line-length 79 .
- name: Running isort
if: always()
run: |
isort --check-only --line-length 79 --profile black .