diff options
| author | JensDiemer <git@jensdiemer.de> | 2020-02-13 10:03:53 +0100 |
|---|---|---|
| committer | JensDiemer <git@jensdiemer.de> | 2020-02-13 10:03:53 +0100 |
| commit | 9cc2afe55b8610efdea61f7263ef89ca78a2b473 (patch) | |
| tree | 80392eaf8c710268df15e166c1df2eca6e6b9381 /.github | |
| parent | 63dae7c504a9fa0732198dd12654016fbeb0c6aa (diff) | |
| download | creole-9cc2afe55b8610efdea61f7263ef89ca78a2b473.tar.gz | |
use https://github.com/ymyzk/tox-gh-actions on gitlab CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/pythonapp.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 6a2c6ee..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: | @@ -38,7 +39,10 @@ jobs: - name: 'Run tests with Python v${{ matrix.python-version }}' run: | source $HOME/.poetry/env - make pytest + make tox + + - name: 'Upload coverage report' + run: bash <(curl -s https://codecov.io/bash) - name: 'Run linters' if: matrix.python-version == '3.8' @@ -46,5 +50,4 @@ jobs: source $HOME/.poetry/env make lint - - name: 'Upload coverage report' - run: bash <(curl -s https://codecov.io/bash) + |
