Define review and closeout boundary #7
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| python: | |
| name: python | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: python -m pip install PyYAML | |
| - name: Backlog check | |
| run: python scripts/check_backlog.py | |
| - name: Backlog checker tests | |
| run: python -m unittest discover -s tests | |
| - name: Unit tests | |
| run: python -m unittest discover -s structured-review/tests | |
| - name: Compile | |
| run: python -m compileall -q structured-review |