Skip to content
This repository was archived by the owner on Aug 19, 2026. It is now read-only.

docs: Add screenshot placeholder to README with instructions #6

docs: Add screenshot placeholder to README with instructions

docs: Add screenshot placeholder to README with instructions #6

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Check syntax
run: |
python -m py_compile server.py
- name: Check imports
run: |
python -c "import server"