Add open agentic models (DeepSeek V4 Pro + GLM 5.2) to the catalog #10
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: tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| scrubber-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install deps | |
| # click + typer explicit: spacy's `download` CLI is typer/click-based but presidio's | |
| # dependency resolution doesn't always pull them, so `spacy download` ModuleNotFound's. | |
| run: pip install pytest httpx spacy click typer presidio-analyzer presidio-anonymizer | |
| - name: Download spaCy model | |
| run: python -m spacy download en_core_web_md | |
| - name: Run scrubber tests (incl. golden leak canary) | |
| run: pytest tests/ -q |