Skip to content

Commit 760911c

Browse files
committed
Fix healthcheck
1 parent dfc93ca commit 760911c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: Check that container is running
104104
run: |
105-
docker exec ${{ env.TEST_CONTAINER_NAME }} uv python bin/healthcheck.py
105+
docker exec ${{ env.TEST_CONTAINER_NAME }} bin/healthcheck.py
106106
107107
- name: Spin down container
108108
run: |

bin/healthcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env uv run
22

33
import os
44

0 commit comments

Comments
 (0)