Skip to content

Fix runtime_decisions.py formatting #28

Fix runtime_decisions.py formatting

Fix runtime_decisions.py formatting #28

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.11, 3.12 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# One shell session so `source venv/bin/activate` applies to pip, black, pytest.
- name: Install deps and run checks
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -e ".[dev,ui]"
black --check .
pytest --maxfail=1 --disable-warnings -q