Skip to content

Commit 351814f

Browse files
committed
Fix path in workflow
1 parent 549b9a7 commit 351814f

File tree

1 file changed

+9
-20
lines changed

1 file changed

+9
-20
lines changed

.github/workflows/test.yaml

+9-20
Original file line numberDiff line numberDiff line change
@@ -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/[email protected]
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/[email protected]
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,27 +91,23 @@ 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/[email protected]
@@ -130,14 +120,13 @@ jobs:
130120

131121
- name: Install locally
132122
run: pip install .
133-
working-directory: main
134123

135124
- name: Run tests in docs
136125
uses: polypheny/[email protected]
137126
with:
138127
cmd: make doctest
139128
jar: ../polypheny.jar
140-
working-directory: main/docs
129+
working-directory: docs
141130
default-store: ${{ matrix.adapter }}
142131

143132
build-docs:

0 commit comments

Comments
 (0)