From 4109f1c8e4b6bff0de68e9d2cddaeaab215f756b Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Mon, 11 May 2020 06:08:03 +0300 Subject: workflow fix --- .github/workflows/dockerimage.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to '.github') 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 -- cgit v1.2.3