File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed
Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Checks
2+
3+ on :
4+ push :
5+ branches : ['**']
6+
7+ jobs :
8+ checks :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v4
13+
14+ - uses : actions/setup-python@v5
15+ with :
16+ python-version : ' 3.13'
17+
18+ - name : Test
19+ run : make test
20+
21+ # #
22+ # Example project
23+ #
24+ - uses : actions/setup-node@v4
25+ with :
26+ node-version-file : ' .nvmrc'
27+
28+ - name : Setup Featurevisor example-1 project
29+ run : |
30+ mkdir example-1
31+ (cd example-1 && npx @featurevisor/cli@2.x init --example=1)
32+ (cd example-1 && npm install)
33+ (cd example-1 && npx featurevisor build)
34+ (cd example-1 && npx featurevisor test)
35+
36+ - name : Run Featurevisor project tests against Python SDK
37+ run : PYTHONPATH=src python3 -m featurevisor test --projectDirectoryPath=./example-1
Original file line number Diff line number Diff line change 22specs
33monorepo
44featurevisor-go
5+ example-1
56
67# Bytecode / cache
78__pycache__ /
Original file line number Diff line number Diff line change 1- # Featurevisor Python SDK
1+ # featurevisor-python
22
33This repository ports the latest Featurevisor [ JavaScript SDK] ( https://featurevisor.com/docs/sdks/javascript/ ) to Python.
44
You can’t perform that action at this time.
0 commit comments