release: v0.2.5 #32
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: Plugin Tests | |
| on: | |
| push: | |
| paths: | |
| - 'plugin/**' | |
| pull_request: | |
| paths: | |
| - 'plugin/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies | |
| run: | | |
| cd plugin | |
| uv sync --extra dev | |
| - name: Run tests | |
| run: | | |
| cd plugin | |
| uv run pytest tests -v | |
| - name: Type check with ty | |
| run: | | |
| cd plugin | |
| uv run ty check kubectl_marimo |