We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ddb12 commit 25cb334Copy full SHA for 25cb334
.github/workflows/test.yml
@@ -47,12 +47,17 @@ jobs:
47
cache-from: type=gha
48
cache-to: type=gha,mode=max
49
50
- - name: Run lint checks & tests
+ - name: Check docker image
51
run: |
52
- . venv/bin/activate
53
echo "######## DOCKER IMAGES ########"
54
docker images
+ # ensure image is actually present before moving on
55
+ docker image inspect covid19:latest && echo "--- image built and loaded"
56
57
+
58
+ - name: Run lint checks & tests
59
+ run: |
60
+ . venv/bin/activate
61
make test
62
63
- name: Upload Report PDFs
0 commit comments