This repository was archived by the owner on Jul 23, 2026. It is now read-only.
Replace developing-with-streamlit with meta-skill for bundled skill discovery #5
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 matrix 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: | |
| discovery: | |
| name: ${{ matrix.scenario }} | |
| runs-on: ubuntu-latest | |
| container: ${{ matrix.image }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - {scenario: 01-active-venv, image: "python:3.12-slim"} | |
| - {scenario: 02-local-dotvenv, image: "python:3.12-slim"} | |
| - {scenario: 03-parent-dotvenv, image: "python:3.12-slim"} | |
| - {scenario: 04-conda, image: "continuumio/miniconda3"} | |
| - {scenario: 05-uv, image: "python:3.12-slim"} | |
| - {scenario: 06-system-python, image: "python:3.12-slim"} | |
| - {scenario: 07-priority-venv-over-local, image: "python:3.12-slim"} | |
| - {scenario: 08-streamlit-missing, image: "python:3.12-slim"} | |
| - {scenario: 09-streamlit-pre-1.57, image: "python:3.12-slim"} | |
| - {scenario: 10-project-dir-argument, image: "python:3.12-slim"} | |
| - {scenario: 11-upstream-restructured, image: "python:3.12-slim"} | |
| - {scenario: 12-pipenv, image: "python:3.12-slim"} | |
| - {scenario: 13-uv-no-lockfile, image: "python:3.12-slim"} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run scenario | |
| run: bash tests/discovery/scenarios/${{ matrix.scenario }}.sh |