Skip to content

Commit

Permalink
Add Docker build tests and manual image release automation (#36)
Browse files Browse the repository at this point in the history
# Description
Adds docker build tests to unit test automation
Adds manual action to publish updated images (i.e. to build with updated
dependencies

# Issues
<!-- If this is related to or closes an issue/other PR, please note them
here -->

# Other Notes
<!-- Note any breaking changes, WIP changes, requests for input, etc.
here -->
  • Loading branch information
NeonDaniel authored Feb 6, 2025
1 parent 994640a commit 1cac213
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
with:
python_version: "3.9"
docker_build_tests:
uses: neongeckocom/.github/.github/workflows/docker_build_tests.yml@master
unit_tests:
strategy:
matrix:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/update_docker_images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Publish Updated Docker image
on:
workflow_dispatch:

jobs:

build_and_publish_docker:
uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master
secrets: inherit
with:
include_semver: False

0 comments on commit 1cac213

Please sign in to comment.