mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-31 14:17:33 +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:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- '**.java'
|
||||
- '**.gradle'
|
||||
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- '**.java'
|
||||
- '**.gradle'
|
||||
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
|
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@ -1,5 +1,10 @@
|
||||
name: CI
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**.java'
|
||||
- '**.gradle'
|
||||
- 'brut.apktool/apktool-lib/src/main/resources/**'
|
||||
|
||||
jobs:
|
||||
build-and-test-with-Java-8-and-later:
|
||||
|
Loading…
x
Reference in New Issue
Block a user