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 7e56ac3..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, pull_request] +on: + push: + pull_request: + types: [opened, synchronize, reopened] jobs: test: