From f26e61f7af67518822e372888c1fbde61c0000bd Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 1 Dec 2025 13:52:18 +0100 Subject: [PATCH] add on --- .github/workflows/pytest.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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