Skip to content

Define review and closeout boundary #7

Define review and closeout boundary

Define review and closeout boundary #7

Workflow file for this run

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