Skip to content

Commit

Permalink
Merge pull request #14 from G00fY2/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
G00fY2 authored May 6, 2023
2 parents 10e9907 + 1197bb3 commit 2cb6d51
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@ on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.android.application") version "7.0.4" apply false
kotlin("android") version "1.6.10" apply false
id("com.android.application") version "7.1.3" apply false
kotlin("android") version "1.6.21" apply false
id("org.sonarqube") version "3.3"
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk = 31
compileSdk = 32
defaultConfig {
applicationId = "io.github.g00fy2.versioncomparesample"
minSdk = 14
targetSdk = 31
targetSdk = 32
versionCode = 1
versionName = "1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions versioncompare/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ java {
}

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.8"
}

tasks.test {
Expand All @@ -34,7 +34,7 @@ dependencies {
compileOnly("org.jetbrains:annotations:23.0.0")

testImplementation("junit:junit:4.13.2")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.8.1")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.10")
}

group = "io.github.g00fy2"
Expand Down

0 comments on commit 2cb6d51

Please sign in to comment.