Skip to content

docs: Add demo GIF and update README with TheOnes branding #11

docs: Add demo GIF and update README with TheOnes branding

docs: Add demo GIF and update README with TheOnes branding #11

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install linters
run: pip install ruff black
- name: Run ruff
run: ruff check . --exit-zero
- name: Check black formatting
run: black --check . --exclude venv || true
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio
- name: Install package
run: pip install . --no-build-isolation
- name: Run tests
run: pytest tests/ -v