diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 11d49909..52011c1f 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -1,5 +1,11 @@ name: "Static Analysis" -on: [ "push", "pull_request" ] +on: + push: + branches: + - '**' + tags-ignore: + - '**' + pull_request: jobs: Static-Check: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 63385212..a735896f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,11 @@ name: Tests - -on: [ push, pull_request ] +on: + push: + branches: + - '**' + tags-ignore: + - '**' + pull_request: # Ensures that only the latest commit is running for each PR at a time. # Ignores this rule for push events. concurrency: