diff options
author | Devaev Maxim <[email protected]> | 2020-05-11 06:08:03 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-05-11 06:08:03 +0300 |
commit | 4109f1c8e4b6bff0de68e9d2cddaeaab215f756b (patch) | |
tree | 350f554be2dca7c1f88b2ca5b1464bb86dfd4046 /.github/workflows | |
parent | 2e28ad2ee40eb0a6114fc1d6be917edea6710bd7 (diff) |
workflow fix
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/dockerimage.yml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index afe4a011..b23de9c6 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -1,20 +1,20 @@ -name: Docker Image CI +name: CI on: - push: - branches: [ master ] - pull_request: - branches: [ master ] + push: + branches: [master] + pull_request: + branches: [master] jobs: + build: + runs-on: ubuntu-latest - build: + steps: + - uses: actions/checkout@v2 - runs-on: ubuntu-latest + - name: Building testenv ... + run: make testenv - steps: - - uses: actions/checkout@v2 - - name: Build testenv - run: make testenv - - name: Toxing - run: make tox + - name: Running tests ... + run: make tox |