docs: add n8n node to implementations #58
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.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 |