Skip to content

Commit 3fee929

Browse files
committed
Merge branch 'master' into dev_0.9.4
* master: Also test run.sh Add docker pull test - no build
2 parents 283a1ea + 86e7af4 commit 3fee929

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/docker-pull.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Docker Pull Test
2+
3+
on:
4+
push:
5+
branches: [ master, dev* ]
6+
pull_request:
7+
branches: [ master, dev* ]
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+
run: |
25+
docker -v
26+
docker images
27+
28+
- name: Run the Docker image - no c302
29+
run: |
30+
# Shouldn't need to pull again.
31+
./stop.sh
32+
./run-quick.sh
33+
34+
- name: Info on Docker images
35+
run: |
36+
docker -v
37+
docker images
38+
39+
- name: Info on generated files
40+
run: |
41+
ls -alt
42+
ls -alt output
43+
ls -alt output/*

0 commit comments

Comments
 (0)