diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index db9cfa1..9642f66 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -1,7 +1,17 @@ name: Pytest +on: + push: + branches: + - master + - develop + pull_request: + workflow_dispatch: + schedule: + - cron: '0 4 1 * *' + jobs: - test: + pytest: strategy: matrix: python-version: @@ -20,5 +30,4 @@ jobs: - name: Install corrlib run: uv sync --locked --all-extras --dev - name: Run tests - # For example, using `pytest` run: uv run pytest tests