We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac1f4a8 commit c548eeaCopy full SHA for c548eea
.github/data/docker-compose-latest.test.yml
@@ -0,0 +1,6 @@
1
+version: "3.3"
2
+
3
+services:
4
+ sut:
5
+ image: alpine:3.16
6
+ command: 'echo "image works";'
.github/workflows/check-action.yml
@@ -13,4 +13,8 @@ jobs:
13
- name: try to pull an image
14
uses: sudo-bot/action-docker-compose@latest
15
with:
16
- cli-args: "pull alpine:3.16"
+ cli-args: "-f .github/data/docker-compose-latest.test.yml pull"
17
+ - name: try to pull an image
18
+ uses: sudo-bot/action-docker-compose@latest
19
+ with:
20
+ cli-args: "-f .github/data/docker-compose-latest.test.yml up --exit-code-from=sut --abort-on-container-exit"
0 commit comments