Extend configuration system to MCPs, agents, skills and more #81
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: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Unit tests | |
| uses: ./.github/workflows/uv-run.yml | |
| with: | |
| command_name: Run tests | |
| command: uv run pytest operations/cleanup/tests/ -v | |
| typecheck: | |
| name: Typechecks | |
| uses: ./.github/workflows/uv-run.yml | |
| with: | |
| command_name: Run mypy | |
| command: uv run mypy operations --ignore-missing-imports |