docs: correct the stale delivery-model and test-count claims #22
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install project and development tools | |
| run: python -m pip install -c constraints.txt -e ".[dev]" | |
| - name: Lint | |
| run: python -m ruff check src tests | |
| - name: Type-check | |
| run: python -m mypy src tests | |
| - name: Test | |
| run: python -m unittest discover -s tests -v | |
| - name: Smoke-test CLI and packaged contract | |
| shell: pwsh | |
| run: | | |
| python -m detfuzz.cli --version | |
| python -m detfuzz.cli simulate-report | |
| python -m detfuzz.cli export-contract --output artifacts/contract.json | |
| - name: Build wheel | |
| run: python -m pip wheel --no-deps . --wheel-dir artifacts/wheel |