Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
- name: Verify dependency lock files are updated
if: github.event_name == 'pull_request' && matrix.python-version == '3.12'
run: |
Expand Down Expand Up @@ -51,9 +53,7 @@ jobs:
exit 1
fi
- name: Install dependencies
run: |
python -m pip install -U pip
pip install -r requirements-dev.lock
run: uv pip install --system -r requirements-dev.lock
- name: Format check
run: black --check .
- name: Lint
Expand Down