ci: add unit test workflow for Python and JavaScript

Runs pytest and vitest on every push/PR to main.
Only unit tests — no binary required.
This commit is contained in:
CloakHQ
2026-03-06 05:13:07 +01:00
parent 3880d30d0f
commit 829e4b881f
3 changed files with 33 additions and 2 deletions
+32
View File
@@ -0,0 +1,32 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]" pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v
javascript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install and build
run: cd js && npm install && npm run build
- name: Run tests
run: cd js && npm test