diff options
Diffstat (limited to '.github')
-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 |