mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-31 22:27:42 +01:00
build: only run tests on java/gradle/resource changes (#2453)
* build: only run tests on java/gradle/resource changes * fix: codeql only runs on java/resource changes
This commit is contained in:
parent
a2356faf92
commit
b49bd95489
8
.github/workflows/codeql-analysis.yml
vendored
8
.github/workflows/codeql-analysis.yml
vendored
@ -3,8 +3,16 @@ name: "CodeQL"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- '**.java'
|
||||||
|
- '**.gradle'
|
||||||
|
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- '**.java'
|
||||||
|
- '**.gradle'
|
||||||
|
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
|
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@ -1,5 +1,10 @@
|
|||||||
name: CI
|
name: CI
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '**.java'
|
||||||
|
- '**.gradle'
|
||||||
|
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-test-with-Java-8-and-later:
|
build-and-test-with-Java-8-and-later:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user