fix: update GitHub Actions workflows for UV installation and cross-platform support #1509
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pyright | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
env: | |
WORKING_DIRECTORY: "." | |
PYRIGHT_OUTPUT_FILENAME: "pyright.log" | |
jobs: | |
Pyright: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache UV virtualenv | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/uv | |
~/.uv | |
.venv | |
key: ${{ runner.os }}-uv-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-uv- | |
- name: Install UV | |
run: | | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
curl.exe -LsSf https://astral.sh/uv/install.ps1 | pwsh | |
echo "$USERPROFILE/.cargo/bin" >> $GITHUB_PATH | |
else | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
fi | |
export PATH="$HOME/.cargo/bin:$PATH" | |
uv --version | |
shell: bash | |
- name: Create and activate venv | |
run: | | |
python -m venv .venv | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
source .venv/Scripts/activate | |
else | |
source .venv/bin/activate | |
fi | |
python --version # Verify Python version | |
shell: bash | |
- name: Install dependencies | |
run: | | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
source .venv/Scripts/activate | |
else | |
source .venv/bin/activate | |
fi | |
python --version | |
uv pip install -e ".[test-docs,anthropic,groq,cohere,mistralai,litellm,google-generativeai,vertexai,cerebras_cloud_sdk,fireworks-ai,writer]" --system | |
uv pip install -r requirements-dev.txt --system | |
uv pip install --upgrade "typing-extensions>=4.12.2" "requests>=2.32.3" "regex>=2024.11.6" --system | |
uv pip list | |
shell: bash | |
- uses: jakebailey/pyright-action@v2 | |
with: | |
version: 1.1.373 |