uv + Ruff #498
Workflow file for this run
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: 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@v3 | |
with: | |
version: "latest" | |
enable-cache: true | |
- name: Install a specific version of Streamlit | |
if: ${{ matrix.streamlit-version }} | |
run: | | |
uv pip uninstall streamlit | |
uv pip install streamlit=="${STREAMLIT_VERSION}" | |
env: | |
STREAMLIT_VERSION: ${{ matrix.streamlit-version }} | |
- name: Install dependencies | |
run: uv sync | |
- name: Show Python and Streamlit versions | |
run: | | |
python -V | |
uv run 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 |