This repository was archived by the owner on Jul 23, 2026. It is now read-only.
test-discovery #8
Workflow file for this run
This file contains hidden or 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: test-discovery | |
| on: | |
| pull_request: | |
| paths: | |
| - "developing-with-streamlit/**" | |
| - "tests/**" | |
| - ".github/workflows/test-discovery.yml" | |
| push: | |
| branches: [main] | |
| schedule: | |
| # Weekly — re-runs the suite against `streamlit` (latest from PyPI) even | |
| # when nobody pushes, so we catch upstream changes (renamed bundled | |
| # SKILL.md, restructured .agents/skills/, etc.) within ~7 days during | |
| # quiet periods. | |
| - cron: "0 12 * * 1" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| defaults: | |
| run: | |
| # Use bash on Windows too (Git Bash, pre-installed on windows-latest). | |
| # Lets us share the same wrapper command across both OSes. | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| # conda is provided by the runner image on ubuntu-latest (via | |
| # /usr/share/miniconda) but not on windows-latest. Install it via | |
| # setup-miniconda so the conda detection test runs identically on both. | |
| - uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| auto-update-conda: false | |
| activate-environment: "" | |
| auto-activate-base: false | |
| - name: Install Python dev tools | |
| run: python -m pip install --upgrade pip pytest uv pipenv | |
| - name: Run discovery tests | |
| run: pytest tests/discovery/ -v |