Add research note: A2A Protocol #8
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: Validate notes and ideas | |
| on: | |
| pull_request: | |
| paths: | |
| - "research/**" | |
| - "ideas/**" | |
| - ".github/scripts/validate_notes.py" | |
| - ".github/workflows/lint.yml" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "research/**" | |
| - "ideas/**" | |
| - ".github/scripts/validate_notes.py" | |
| - ".github/workflows/lint.yml" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install "pyyaml>=6" | |
| - name: Validate notes and ideas | |
| run: python .github/scripts/validate_notes.py |