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.
2 parents 283a1ea + 86e7af4 commit 3fee929Copy full SHA for 3fee929
.github/workflows/docker-pull.yml
@@ -0,0 +1,43 @@
1
+name: Docker Pull Test
2
+
3
+on:
4
+ push:
5
+ branches: [ master, dev* ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
18
+ - name: Run the Docker image
19
+ run: |
20
+ # Don't build. Will be pulled when run below
21
+ ./run.sh
22
23
+ - name: Info on Docker images
24
25
+ docker -v
26
+ docker images
27
28
+ - name: Run the Docker image - no c302
29
30
+ # Shouldn't need to pull again.
31
+ ./stop.sh
32
+ ./run-quick.sh
33
34
35
36
37
38
39
+ - name: Info on generated files
40
41
+ ls -alt
42
+ ls -alt output
43
+ ls -alt output/*
0 commit comments