Merge pull request #4 from logicmoo/feat/ui-mockups #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: { branches: [ main, master ] } | |
| pull_request: { branches: [ main, master ] } | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: { python-version: '3.11' } | |
| - name: Install system deps (MIDI) | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libasound2-dev | |
| - name: Install deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install pytest ruff black | |
| - name: Lint (ruff) | |
| run: ruff check . | |
| - name: Format check (black) | |
| run: black --check . | |
| - name: Tests | |
| env: | |
| OPENAI_API_KEY: "" | |
| USE_LLM: "0" | |
| run: pytest -q |