@@ -32,49 +32,43 @@ jobs:
3232 with :
3333 distribution : ' temurin'
3434 java-version : ' 17'
35-
35+
36+ - name : Checkout driver
37+ uses : actions/checkout@v4
38+
3639 - name : Set Version
3740 id : version
3841 run : echo "v0.0.0" > polypheny-connector-version.txt
3942
4043 - name : Create MANIFEST.in
4144 run : echo "include polypheny-connector-version.txt" > MANIFEST.in
42-
43- - name : Checkout driver
44- uses : actions/checkout@v4
45- with :
46- path : main
4745
4846 - name : Install driver dependencies
4947 run : pip install -r requirements.txt
50- working-directory : main
5148
5249 - name : Load Polypheny JAR
5350 uses : actions/download-artifact@v4
5451 with :
5552 name : polypheny-jar
56- path : main
5753
5854 - name : Run tests
5955 uses : polypheny/GitHub-Action-Run-Polypheny@v0.2.0
6056 with :
6157 cmd : pytest --doctest-modules -v
6258 jar : polypheny.jar
6359 autodocker : ${{ matrix.os != 'windows' }}
64- working-directory : main
6560 timeout-minutes : 10
6661
6762 - name : Install locally
6863 run : pip install .
69- working-directory : main
7064
7165 - name : Run tests in docs
7266 uses : polypheny/GitHub-Action-Run-Polypheny@v0.2.0
7367 with :
7468 cmd : make doctest
7569 jar : ../polypheny.jar
7670 autodocker : ${{ matrix.os != 'windows' }}
77- working-directory : main/ docs
71+ working-directory : docs
7872
7973 test-stores :
8074 timeout-minutes : 10
@@ -97,47 +91,41 @@ jobs:
9791 distribution : ' temurin'
9892 java-version : ' 17'
9993
94+ - name : Checkout driver
95+ uses : actions/checkout@v4
96+
10097 - name : Set Version
10198 id : version
10299 run : echo "v0.0.0" > polypheny-connector-version.txt
103100
104101 - name : Create MANIFEST.in
105102 run : echo "include polypheny-connector-version.txt" > MANIFEST.in
106103
107- - name : Checkout driver
108- uses : actions/checkout@v4
109- with :
110- path : main
111-
112104 - name : Install driver dependencies
113105 run : pip install -r requirements.txt
114- working-directory : main
115106
116107 - name : Load Polypheny JAR
117108 uses : actions/download-artifact@v4
118109 with :
119110 name : polypheny-jar
120- path : main
121111
122112 - name : Run tests
123113 uses : polypheny/GitHub-Action-Run-Polypheny@v0.2.0
124114 with :
125115 cmd : pytest --doctest-modules -v
126116 jar : polypheny.jar
127- working-directory : main
128117 default-store : ${{ matrix.adapter }}
129118 timeout-minutes : 10
130119
131120 - name : Install locally
132121 run : pip install .
133- working-directory : main
134122
135123 - name : Run tests in docs
136124 uses : polypheny/GitHub-Action-Run-Polypheny@v0.2.0
137125 with :
138126 cmd : make doctest
139127 jar : ../polypheny.jar
140- working-directory : main/ docs
128+ working-directory : docs
141129 default-store : ${{ matrix.adapter }}
142130
143131 build-docs :
0 commit comments