Skip to content

Try to create a better UI when there is a single observable #104

Try to create a better UI when there is a single observable

Try to create a better UI when there is a single observable #104

Workflow file for this run

name: Build and Test
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Step 1: clone the repo
- uses: actions/checkout@v2
# Step 2: configure Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
# Step 3: install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Step 4: run tests
- name: Run tests
run: bash tests/run_tests.sh