Skip to content

Commit cac1b56

Browse files
committed
Fix actions not using latest commit
1 parent 53b72fc commit cac1b56

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/verify.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,11 @@ jobs:
137137
run: |
138138
docker run --rm \
139139
-v "$PWD":/work \
140+
-e PYTHONPATH=/work \
140141
-w /work \
141142
"${GHCR_IMAGE}:${IMAGE_TAG}" \
142143
bash -c '
144+
python -m pip install -e /work --no-deps
143145
make smoke_test TEST=param_test
144146
'
145147
@@ -197,6 +199,7 @@ jobs:
197199
- name: Run ${{ matrix.name }}
198200
run: |
199201
docker run --rm \
202+
-e PYTHONPATH=/work \
200203
-v "$PWD":/work \
201204
-w /work \
202205
"${GHCR_IMAGE}:${IMAGE_TAG}" \

0 commit comments

Comments
 (0)