summaryrefslogtreecommitdiff
path: root/.github/workflows/pythonapp.yml
diff options
context:
space:
mode:
authorJens Diemer <github.com@jensdiemer.de>2020-02-13 10:41:24 +0100
committerGitHub <noreply@github.com>2020-02-13 10:41:24 +0100
commit1e2e2c4edb888b5c9a46f057880d441922878f5b (patch)
tree1eb9b13dd2b7fa6bef7135f01b41df7cd2413efa /.github/workflows/pythonapp.yml
parent00cbba43f0fcc8648bc1d2bb461647741f00bc4a (diff)
parent51a3622519aa0a04801038a95344f60040cae05c (diff)
downloadcreole-1e2e2c4edb888b5c9a46f057880d441922878f5b.tar.gz
Merge pull request #47 from jedie/update
Update
Diffstat (limited to '.github/workflows/pythonapp.yml')
-rw-r--r--.github/workflows/pythonapp.yml15
1 files changed, 9 insertions, 6 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml
index 2541ec4..75901e0 100644
--- a/.github/workflows/pythonapp.yml
+++ b/.github/workflows/pythonapp.yml
@@ -24,6 +24,7 @@ jobs:
make install-poetry
source $HOME/.poetry/env
make install
+ pip3 install tox-gh-actions
- name: 'List installed packages'
run: |
@@ -35,16 +36,18 @@ jobs:
source $HOME/.poetry/env
make tox-listenvs
+ - name: 'Run tests with Python v${{ matrix.python-version }}'
+ run: |
+ source $HOME/.poetry/env
+ make tox
+
+ - name: 'Upload coverage report'
+ run: bash <(curl -s https://codecov.io/bash)
+
- name: 'Run linters'
if: matrix.python-version == '3.8'
run: |
source $HOME/.poetry/env
make lint
- - name: 'Run tests with Python v${{ matrix.python-version }}'
- run: |
- source $HOME/.poetry/env
- make pytest
- - name: 'Upload coverage report'
- run: bash <(curl -s https://codecov.io/bash)