From 31c1a0c233858b67e4688bb6fe138041824cdcbe Mon Sep 17 00:00:00 2001 From: prasad-sawantdesai Date: Mon, 17 Mar 2025 14:05:51 +0100 Subject: [PATCH 1/2] removed pull_request event --- .github/workflows/test_with_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_with_pytest.yml b/.github/workflows/test_with_pytest.yml index 7e56ac3..ecff9a7 100644 --- a/.github/workflows/test_with_pytest.yml +++ b/.github/workflows/test_with_pytest.yml @@ -1,6 +1,6 @@ name: Test using pytest -on: [push, pull_request] +on: push jobs: test: From e75ed7a09231233e62ab4885fd541d217b64bb17 Mon Sep 17 00:00:00 2001 From: prasad-sawantdesai Date: Mon, 17 Mar 2025 15:19:44 +0100 Subject: [PATCH 2/2] added pull_request event with options --- .github/workflows/linting.yml | 5 ++++- .github/workflows/publish.yml | 5 ++++- .github/workflows/test_with_pytest.yml | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 96bed18..e18f1c3 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -1,6 +1,9 @@ name: linting-and-code-formatting -on: push +on: + push: + pull_request: + types: [opened, synchronize, reopened] jobs: build: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2ebc856..a2f8802 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,9 @@ name: build-wheel-and-publish-test-pypi -on: push +on: + push: + pull_request: + types: [opened, synchronize, reopened] jobs: build: diff --git a/.github/workflows/test_with_pytest.yml b/.github/workflows/test_with_pytest.yml index ecff9a7..7a345c7 100644 --- a/.github/workflows/test_with_pytest.yml +++ b/.github/workflows/test_with_pytest.yml @@ -1,6 +1,9 @@ name: Test using pytest -on: push +on: + push: + pull_request: + types: [opened, synchronize, reopened] jobs: test: