diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dockerimage.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml new file mode 100644 index 00000000..afe4a011 --- /dev/null +++ b/.github/workflows/dockerimage.yml @@ -0,0 +1,20 @@ +name: Docker Image CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build testenv + run: make testenv + - name: Toxing + run: make tox |