Skip to content

feat(scoring): introduce healthy scoring v5 #117

feat(scoring): introduce healthy scoring v5

feat(scoring): introduce healthy scoring v5 #117

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
# Node is only needed for the poster-JS syntax check; with it installed,
# tests/test_smoke.py runs `node --check` instead of skipping it.
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Byte-compile paxel.py
run: python3 -m py_compile paxel.py
- name: Run tests (pipeline smoke + invariants + poster JS node --check)
run: python3 -m unittest discover -s tests -v