Skip to content

Migrate from rye to uv #548

Migrate from rye to uv

Migrate from rye to uv #548

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- .github/workflows/CI.yml
- src/**
- tests/**
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1
jobs:
run:
name: On ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }} with python version ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: 0.5.23
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Install the cli
run: uv sync --dev
- name: Check code
run: |
uv run ruff check
uv run pyright
- name: Checkout resonate repository
uses: actions/checkout@v4
with:
repository: resonatehq/resonate
path: resonate
- name: Build resonate
run: go build -o resonate
working-directory: resonate
- name: Start resonate server
run: ./resonate serve &
working-directory: resonate
- name: Test code
timeout-minutes: 10
env:
RESONATE_STORE_URL: http://localhost:8001
RESONATE_TASKS_URL: http://localhost:8002
run: uv run pytest