mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
ci(analyze): only run when necessary (#766)
* ci(analyser): only run on lib/`.dart` changes * ci(analyser): runs on workflow changes * ci(analyze): run on all dart file changes --------- Co-authored-by: Palm <palmpasuthorn@gmail.com>
This commit is contained in:
parent
fa4063220f
commit
7839252934
6
.github/workflows/analyze.yml
vendored
6
.github/workflows/analyze.yml
vendored
@ -3,8 +3,14 @@ name: Analyze Code
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main", "dev" ]
|
branches: [ "main", "dev" ]
|
||||||
|
paths:
|
||||||
|
- "**.dart"
|
||||||
|
- ".github/workflows/analyze.yml"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main", "dev" ]
|
branches: [ "main", "dev" ]
|
||||||
|
paths:
|
||||||
|
- "**.dart"
|
||||||
|
- ".github/workflows/analyze.yml"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
Loading…
Reference in New Issue
Block a user