diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 935b1c26e..e7520577c 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -4,7 +4,7 @@ name: Documentation # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [push] +on: [push, pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: diff --git a/.github/workflows/Lint.yml b/.github/workflows/Lint.yml index 198e536a6..a0f7664d9 100644 --- a/.github/workflows/Lint.yml +++ b/.github/workflows/Lint.yml @@ -1,6 +1,6 @@ name: Code Lint -on: [push] +on: [push, pull_request] jobs: Linters: diff --git a/.github/workflows/UnitTests.yml b/.github/workflows/UnitTests.yml index 699038e88..bbc486b18 100644 --- a/.github/workflows/UnitTests.yml +++ b/.github/workflows/UnitTests.yml @@ -1,10 +1,6 @@ name: Tests -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: Unit_Tests: