Skip to content

Commit

Permalink
Merge branch 'master' into dev_0.9.4
Browse files Browse the repository at this point in the history
* master:
  Also test run.sh
  Add docker pull test - no build
  • Loading branch information
pgleeson committed Nov 16, 2023
2 parents 283a1ea + 86e7af4 commit 3fee929
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/docker-pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Docker Pull Test

on:
push:
branches: [ master, dev* ]
pull_request:
branches: [ master, dev* ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run the Docker image
run: |
# Don't build. Will be pulled when run below
./run.sh
- name: Info on Docker images
run: |
docker -v
docker images
- name: Run the Docker image - no c302
run: |
# Shouldn't need to pull again.
./stop.sh
./run-quick.sh
- name: Info on Docker images
run: |
docker -v
docker images
- name: Info on generated files
run: |
ls -alt
ls -alt output
ls -alt output/*

0 comments on commit 3fee929

Please sign in to comment.