File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 25
25
distribution : ' zulu'
26
26
java-version : ' 17'
27
27
28
+ - name : Install Python
29
+ uses : actions/setup-python@v5
30
+ with :
31
+ # Fivetran build script requires Python 3.10, not above.
32
+ # Testing the destination found that it also requires 3.10, latest does not work.
33
+ python-version : ' 3.10.8'
34
+
35
+ - name : Install Python dependencies
36
+ run : python -m pip install --upgrade pip setuptools wheel
37
+
38
+ - name : Install Python connector requirements
39
+ working-directory : examples/connector/python
40
+ run : pip install -r requirements.txt
41
+
42
+ - name : Run Python connector build script
43
+ working-directory : examples/connector/python
44
+ run : ./build.sh
45
+
46
+ - name : Install Python destination requirements
47
+ working-directory : examples/destination/python
48
+ run : pip install -r requirements.txt
49
+
50
+ - name : Run Python destination build script
51
+ working-directory : examples/destination/python
52
+ run : ./build.sh
53
+
28
54
- name : Set up Go
29
55
uses : actions/setup-go@v4
30
56
with :
You can’t perform that action at this time.
0 commit comments