Skip to content

docs: add n8n node to implementations #58

docs: add n8n node to implementations

docs: add n8n node to implementations #58

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.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: blackwell-systems/gcf
path: gcf
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]" || pip install -e . && pip install pytest
- name: Unit tests
run: pytest tests/ -v --ignore=tests/test_conformance_v2.py --ignore=tests/test_roundtrip_v2.py
- name: Conformance tests (133 fixtures)
run: pytest tests/test_conformance_v2.py -v
- name: Property-based round-trip (100K random + 100K adversarial)
run: pytest tests/test_roundtrip_v2.py -v