Skip to content

design: og-image is now a screenshot of the deployed Vercel landing page #49

design: og-image is now a screenshot of the deployed Vercel landing page

design: og-image is now a screenshot of the deployed Vercel landing page #49

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e ".[sync,dev]"
- name: Run tests
run: |
python3 -m pytest tests/ -x --tb=short
- name: Verify CLI imports
run: |
python3 -m py_compile cli.py connectors/*.py scripts/*.py
- name: Verify --help
run: |
python3 cli.py --help
python3 cli.py --version