File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 20
20
PGDATABASE : postgres
21
21
PGUSER : postgres
22
22
POSTGRES_PASSWORD : postgres
23
+ UV_LINK_MODE : copy
24
+ UV_COMPILE_BYTECODE : 1
25
+ UV_PROJECT_ENVIRONMENT : /venv
26
+ UV_PYTHON_INSTALL_DIR : /venv/bin
27
+ VIRTUAL_ENVIRONMENT : /venv
23
28
24
29
jobs :
25
30
# This builds a base postgres image that has everything installed to be able to run pgstac.
@@ -162,17 +167,16 @@ jobs:
162
167
163
168
steps :
164
169
- uses : actions/checkout@v4
170
+ - uses : astral-sh/setup-uv@v3
165
171
- name : Get Wheel
166
172
uses : actions/download-artifact@v4
167
173
with :
168
174
name : wheels-x86_64
169
175
path : /tmp/wheels
170
176
- name : Install pypgstac
171
- working-directory : /__w/pgstac/pgstac/src/pypgstac
172
177
run : |
173
178
for i in /tmp/wheels/pypgstac*x86_64.whl; do uv pip install pypgstac @ $i; done
174
179
175
180
- name : Run tests
176
- working-directory : /__w/pgstac/pgstac/docker/pypgstac/bin
177
181
run : |
178
- ./test
182
+ ./home/runner/work/pgstac/pgstac/docker/bin/ test
You can’t perform that action at this time.
0 commit comments