Skip to content

Bump astral-sh/setup-uv from 3 to 5 #521

Bump astral-sh/setup-uv from 3 to 5

Bump astral-sh/setup-uv from 3 to 5 #521

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
streamlit-version: [null]
include:
# Test with streamlit <1.4.0 and >=1.4.0. See https://github.com/whitphx/streamlit-server-state/issues/64
- python-version: 3.9
streamlit-version: 1.0.0
- python-version: 3.9
streamlit-version: 1.4.0
# Test with streamlit >=1.6.0. See https://github.com/whitphx/streamlit-webrtc/issues/709
- python-version: 3.9
streamlit-version: 1.6.0
# Test with streamlit >=1.8.0. See https://github.com/whitphx/streamlit-webrtc/issues/759
- python-version: 3.9
streamlit-version: 1.8.0
# Test with streamlit >=1.12.0. See https://github.com/whitphx/streamlit-server-state/issues/128
- python-version: 3.9
streamlit-version: 1.12.0
# Test with streamlit >=1.12.1. See https://github.com/whitphx/streamlit-server-state/issues/135
- python-version: 3.9
streamlit-version: 1.12.1
# Test with streamlit >=1.14.0. See https://github.com/whitphx/streamlit-server-state/pull/175
- python-version: 3.9
streamlit-version: 1.14.0
# Test with streamlit >=1.18.0. See https://github.com/whitphx/streamlit-server-state/issues/171
- python-version: 3.9
streamlit-version: 1.18.0
# Test with streamlit >=1.38.0. See https://github.com/whitphx/streamlit-server-state/pull/232
- python-version: 3.9
streamlit-version: 1.38.0
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
- name: Install dependencies
run: uv sync
- name: Install a specific version of Streamlit
if: ${{ matrix.streamlit-version }}
run: |
uv remove streamlit
uv add streamlit=="${STREAMLIT_VERSION}"
env:
STREAMLIT_VERSION: ${{ matrix.streamlit-version }}
- name: Show Python and Streamlit versions
run: |
python -V
uv run python -c "import streamlit; print(streamlit.__version__)"
- name: Run Ruff
run: |
uv run ruff check --output-format=github .
uv run ruff format . --check
- name: Type checking with mypy
run: |
uv run mypy .
- name: Test with pytest
run: |
uv run pytest