Add workflow for docker build and push (#750)

* Add workflow for docker build and push
This commit is contained in:
Adi
2023-06-26 08:49:37 +02:00
committed by GitHub
parent 3d59b87f09
commit 367faaddd1
5 changed files with 73 additions and 24 deletions

18
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
---
name: "CI"
on:
pull_request:
push:
branches:
- master
paths-ignore:
- '**/README.md'
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml
test:
uses: ./.github/workflows/python.yml
needs: [pre-commit]
release:
uses: ./.github/workflows/docker-build-push.yml
needs: [test]