diff options
| author | JensDiemer <git@jensdiemer.de> | 2020-02-13 09:54:48 +0100 |
|---|---|---|
| committer | JensDiemer <git@jensdiemer.de> | 2020-02-13 09:54:48 +0100 |
| commit | 63dae7c504a9fa0732198dd12654016fbeb0c6aa (patch) | |
| tree | 2c5fc7d5159fc559a137f49afd96660adb3affac | |
| parent | 00cbba43f0fcc8648bc1d2bb461647741f00bc4a (diff) | |
| download | creole-63dae7c504a9fa0732198dd12654016fbeb0c6aa.tar.gz | |
run tests first, then linting
| -rw-r--r-- | .github/workflows/pythonapp.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 2541ec4..6a2c6ee 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -35,16 +35,16 @@ jobs: source $HOME/.poetry/env make tox-listenvs - - name: 'Run linters' - if: matrix.python-version == '3.8' + - name: 'Run tests with Python v${{ matrix.python-version }}' run: | source $HOME/.poetry/env - make lint + make pytest - - name: 'Run tests with Python v${{ matrix.python-version }}' + - name: 'Run linters' + if: matrix.python-version == '3.8' run: | source $HOME/.poetry/env - make pytest + make lint - name: 'Upload coverage report' run: bash <(curl -s https://codecov.io/bash) |
