diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index d41355c..7be58ca 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -4,12 +4,12 @@ on: workflow_dispatch: push: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/black.yml' pull_request: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/black.yml' diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 917e10f..109236c 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/mypy.yml' @@ -13,7 +13,7 @@ on: - 'setup.py' - 'MANIFEST.in' pull_request: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/mypy.yml' diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 2f38c27..1e64299 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -4,14 +4,14 @@ on: workflow_dispatch: push: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/pylint.yml' - '.pylintrc' - 'requirements.txt' pull_request: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - '.github/workflows/pylint.yml' diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 319891c..4fb2f85 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - 'tests/**' @@ -15,7 +15,7 @@ on: - 'test-requirements.txt' pull_request: - branches: [ main ] + branches: [ main, staging ] paths: - 'src/relic/**' - 'tests/**'