Skip to content

Final confirmation gate: exact docket text preview and document manifest #97

Final confirmation gate: exact docket text preview and document manifest

Final confirmation gate: exact docket text preview and document manifest #97

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,web]"
- name: Install Playwright
run: |
playwright install chromium --with-deps
- name: Run tests
run: |
python -m pytest tests/ -q --ignore=tests/test_browser_e2e.py
- name: Run browser E2E tests
run: |
python -m pytest tests/test_browser_e2e.py -q
- name: Verify all imports
run: |
python -c "
import importlib, pkgutil, ecfiler
for _, modname, _ in pkgutil.walk_packages(ecfiler.__path__, 'ecfiler.'):
importlib.import_module(modname)
print('All modules OK')
"
- name: Verify CLI
run: |
python -m ecfiler --version
python -m ecfiler check