feat(video): real UiPath Orchestrator footage at s08 ("on UiPath Auto… #10
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install the UiPath SDK (for the integration tests) | |
| run: pip install "uipath>=2.11.0,<2.12.0" | |
| - name: Engine, eval, ledger, uipath, stress tests | |
| run: | | |
| python tests/test_engine.py | |
| python tests/test_evals.py | |
| python tests/test_ledger.py | |
| python tests/test_uipath.py | |
| python tests/test_stress.py | |
| - name: Gate regression suite (30 labelled scenarios must all match) | |
| run: python -m costguard.evals |