ci: enable ci tests on pushes.
- Secure tests on master branch after merge. - Improve build cache hit rates Due to security reason, github only allow reuse cache from - same branch - base branch - default branch Branch Feature-A could not reuse the cache from Feature-B - Developers could run the workflow in their own forked repo before make the PR, this could relieve the runners on upstream repo
This commit is contained in:
parent
5e01961dba
commit
528817d620
|
@ -6,6 +6,8 @@ concurrency:
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- master
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: Check Rebar Dependencies
|
||||
|
||||
on: [pull_request]
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
check_deps_integrity:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name: Check Elixir Release Applications
|
||||
|
||||
on: [pull_request]
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
elixir_apps_check:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name: Elixir Dependency Version Check
|
||||
|
||||
on: [pull_request]
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
elixir_deps_check:
|
||||
|
|
|
@ -6,6 +6,8 @@ concurrency:
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- e*
|
||||
- v*
|
||||
|
|
|
@ -2,6 +2,8 @@ name: Broker tests
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- v*
|
||||
pull_request:
|
||||
|
|
|
@ -2,6 +2,8 @@ name: Check emqx app standalone
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
|
|
|
@ -6,6 +6,8 @@ concurrency:
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- v*
|
||||
pull_request:
|
||||
|
|
|
@ -6,6 +6,8 @@ concurrency:
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
|
|
|
@ -6,6 +6,8 @@ concurrency:
|
|||
|
||||
on:
|
||||
push:
|
||||
branch:
|
||||
- *
|
||||
tags:
|
||||
- v*
|
||||
- e*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: Shellcheck
|
||||
|
||||
on: [pull_request]
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
|
|
Loading…
Reference in New Issue