build: 💄 dependabot #24
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: Interrogate | |
| on: [push] | |
| jobs: | |
| Scanning: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repository | |
| uses: actions/checkout@v3 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install UV | |
| run: | | |
| pip install uv | |
| - name: Install Dependencies | |
| run: | | |
| uv add interrogate | |
| - name: Run Interrogate | |
| run: | | |
| uv run interrogate -vv . --config pyproject.toml | |
| continue-on-error: true | |
| - name: Check Coverage | |
| if: failure() | |
| run: | | |
| echo "Docstring Coverage Is Below 80%" | |
| exit 1 |