Skip to content

Migrate Python projects from poetry to uv #514

Migrate Python projects from poetry to uv

Migrate Python projects from poetry to uv #514

Workflow file for this run

on:
push:
branches: [main]
pull_request:
paths:
- "python/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
shell: bash
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Add uv to PATH
shell: bash
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: selfie-lib - install dependencies
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}

Check failure on line 32 in .github/workflows/python-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/python-ci.yml (Line: 32, Col: 16): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' .github/workflows/python-ci.yml (Line: 39, Col: 16): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash'
run: |
uv venv
source .venv/bin/activate || . .venv/Scripts/activate
uv pip install -r requirements.txt -r dev-requirements.txt
working-directory: python/selfie-lib
- name: selfie-lib - pytest
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m pytest -vv
working-directory: python/selfie-lib
- name: selfie-lib - pyright
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m pyright
working-directory: python/selfie-lib
- name: selfie-lib - ruff
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m ruff format --check && python -m ruff check
working-directory: python/selfie-lib
- name: pytest-selfie - install dependencies
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
uv venv
source .venv/bin/activate || . .venv/Scripts/activate
uv pip install -r requirements.txt -r dev-requirements.txt
working-directory: python/pytest-selfie
- name: pytest-selfie - pyright
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m pyright
working-directory: python/pytest-selfie
- name: pytest-selfie - ruff
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m ruff format --check && python -m ruff check
working-directory: python/pytest-selfie
- name: example-pytest-selfie - install dependencies
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
uv venv
source .venv/bin/activate || . .venv/Scripts/activate
uv pip install -r requirements.txt -r dev-requirements.txt
working-directory: python/example-pytest-selfie
- name: example-pytest-selfie - pytest
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m pytest -vv
working-directory: python/example-pytest-selfie
- name: example-pytest-selfie - pyright
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m pyright
working-directory: python/example-pytest-selfie
- name: example-pytest-selfie - ruff
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
run: |
source .venv/bin/activate || . .venv/Scripts/activate
python -m ruff format --check && python -m ruff check
working-directory: python/example-pytest-selfie