✨ Add proc helper for container process inspection #25
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/* | |
| - src/** | |
| - tests/** | |
| - pyproject.toml | |
| - uv.lock | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: 🧹 Lint | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'renovate[bot]' | |
| steps: | |
| - name: 📥 Checkout repository | |
| uses: actions/checkout@v6 | |
| - uses: pre-commit/action@v3.0.1 | |
| tests: | |
| name: 🧪 Tests | |
| runs-on: ubuntu-latest | |
| needs: lint | |
| steps: | |
| - name: 📥 Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: 🕶 Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: 🧪 Run tests with coverage | |
| run: | | |
| uv sync --group dev | |
| uv run coverage run -m pytest --shed --shed-image=debian --shed-tag=13 | |
| uv run coverage report --show-missing |