only run tests on master if push
This commit is contained in:
parent
1bb7b0d705
commit
09a1612bfa
2 changed files with 2 additions and 2 deletions
2
.github/workflows/run-cli-tests.yml
vendored
2
.github/workflows/run-cli-tests.yml
vendored
|
|
@ -3,7 +3,7 @@ name: CLI Tests
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '**' # Runs on any branch push
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '**' # Runs on any pull request to any branch
|
- '**' # Runs on any pull request to any branch
|
||||||
|
|
|
||||||
2
.github/workflows/run-framework-tests.yml
vendored
2
.github/workflows/run-framework-tests.yml
vendored
|
|
@ -3,7 +3,7 @@ name: Framework Tests
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '**' # Runs on any branch push
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '**' # Runs on any pull request to any branch
|
- '**' # Runs on any pull request to any branch
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue