Skip to content

Migrate Python projects from poetry to uv #522

Migrate Python projects from poetry to uv

Migrate Python projects from poetry to uv #522

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 (Unix)
if: runner.os != 'Windows'
shell: bash
run: |
python -m pip install uv
- name: Install uv (Windows)
if: runner.os == 'Windows'
shell: 'C:/Program Files/Git/bin/bash.exe -e'
run: |
python -m pip install uv
- name: selfie-lib - install dependencies
shell: ${{ runner.os == 'Windows' && 'C:/Program Files/Git/bin/bash.exe -e' || 'bash' }}

Check failure on line 36 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: 36, 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: 43, 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: |
python -m uv venv
source .venv/bin/activate || source .venv/Scripts/activate
python -m 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 || source .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 || source .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 || source .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: |
python -m uv venv
source .venv/bin/activate || source .venv/Scripts/activate
python -m 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 || source .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 || source .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: |
python -m uv venv
source .venv/bin/activate || source .venv/Scripts/activate
python -m 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 || source .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 || source .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 || source .venv/Scripts/activate
python -m ruff format --check && python -m ruff check
working-directory: python/example-pytest-selfie