diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index b150ad2..26c566e 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -41,12 +41,12 @@ jobs: run: pip install -e . - name: Lint with flake8 run: flake8 . - if: runner.os == 'ubuntu-latest' - - name: Test with pytest and coverage - run: pytest --cov=pCRscore -m "not slow" - if: runner.os != 'ubuntu-latest' - - name: Test with pytest without coverage - run: pytest -m "not slow" + - if: runner.os == 'ubuntu-latest' + name: Test with pytest and coverage + run: pytest --cov=pCRscore -m "not slow" + - if: runner.os != 'ubuntu-latest' + name: Test with pytest without coverage + run: pytest -m "not slow" - name: Upload coverage to Codecov if: runner.os == 'ubuntu-latest' uses: codecov/codecov-action@v4.0.1