design: og-image is now a screenshot of the deployed Vercel landing page #49
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] | |
| 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 |