diff --git a/.github/workflows/check-publish.yml b/.github/workflows/check-publish.yml index 2d0f0f6..287fbd8 100644 --- a/.github/workflows/check-publish.yml +++ b/.github/workflows/check-publish.yml @@ -62,13 +62,22 @@ jobs: pip install -U -r tests/requirements-dev.txt pip install -r docs/requirements.txt - - name: Tests + - name: Tests on Ubuntu + if: matrix.platform == 'ubuntu-20.04' run: | pip freeze pytest env: AVISO_DEBUG: True + - name: Tests on macOS + if: matrix.platform == 'macos-13' + run: | + pip freeze + pytest -v --cov=pyaviso --cache-clear + env: + AVISO_DEBUG: True + - name: Documentation run: | make clean