diff options
author | Maxim Devaev <[email protected]> | 2020-05-11 05:58:54 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-11 05:58:54 +0300 |
commit | 2e28ad2ee40eb0a6114fc1d6be917edea6710bd7 (patch) | |
tree | 3ff51e236e227f00066facbb7e74647ec4b2b559 /.github/workflows | |
parent | 8108212aa26c557fb37ff9bcb2dbb66bc1c7782b (diff) |
Create dockerimage.yml
Diffstat (limited to '.github/workflows')
-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 |