Skip to content

Make watchdog timeouts adaptive review points #3

Make watchdog timeouts adaptive review points

Make watchdog timeouts adaptive review points #3

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ['3.10', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Compile
run: python -m compileall -q skills/codex-watchdog/scripts
- name: Test
run: python -m unittest discover -s skills/codex-watchdog/scripts -p "test_*.py" -v