complete restructure

This commit is contained in:
2026-08-19 13:16:43 -04:00
parent d7b6f28cbd
commit f87e1d51ef
60 changed files with 8176 additions and 5143 deletions
+38
View File
@@ -4,13 +4,51 @@ on:
push:
branches:
- main
pull_request:
release:
types:
- published
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Setup uv
uses: astral-sh/setup-uv@v5
- name: Install PortAudio
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends portaudio19-dev
- name: Install dependencies
run: uv sync
- name: Ruff
run: uv run ruff check vibe_bot/
- name: Mypy
run: uv run mypy vibe_bot/
- name: Pyright
run: uv run pyright vibe_bot/
- name: Black
run: uv run black --check vibe_bot/
- name: Test
run: uv run pytest vibe_bot/tests/ -m "not live" -v
build-and-push:
runs-on: ubuntu-latest
needs: [test]
if: github.event_name != 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v4