Skip to content

Commit 0e657a9

Browse files
committed
Gha debug
1 parent 26fc9d1 commit 0e657a9

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/check.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Check
22

33
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request:
8-
branches:
9-
- master
104
workflow_dispatch:
115
workflow_call:
126

.github/workflows/pr.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: PR
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
env:
9+
GRADLE_OPTS: "-Dorg.gradle.daemon=true"
10+
11+
jobs:
12+
check:
13+
uses: ./.github/workflows/check.yml

build-conventions/src/main/kotlin/convention.library-android.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ plugins {
44
}
55

66
android {
7-
compileSdk = 32
7+
compileSdk = 33
88
defaultConfig {
99
minSdk = 21
10-
targetSdk = 32
10+
targetSdk = 33
1111
// testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1212
publishing {
1313
multipleVariants {

0 commit comments

Comments
 (0)