Skip to content

Supporter subscription: pay-what-you-want (min $5) + personal video c… #18

Supporter subscription: pay-what-you-want (min $5) + personal video c…

Supporter subscription: pay-what-you-want (min $5) + personal video c… #18

Workflow file for this run

name: CI
on:
push:
branches: ["new-api", "claude/**"]
pull_request:
branches: ["new-api"]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Run unit tests
run: python -m pytest tests/unit/ -q --tb=short