-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb2ed17
commit d720da0
Showing
4 changed files
with
41 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Check Develop | ||
on: | ||
pull_request: | ||
types: [ opened, reopened ] | ||
branches: | ||
- 'develop' | ||
- 'master' | ||
jobs: | ||
gradle_validation: | ||
name: Validate gradle wrapper | ||
uses: ./.github/workflows/gradle-wrapper-validation.yml | ||
detekt_validation: | ||
name: Check by detekt | ||
needs: gradle_validation | ||
uses: ./.github/workflows/detekt-validation.yml | ||
tests_validation: | ||
name: Run Unit tests | ||
needs: detekt_validation | ||
uses: ./.github/workflows/tests-validation.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: "tests" | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
tests: | ||
name: "Run tests" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
- name: Give gradle permission | ||
run: chmod +x gradlew | ||
- name: Run tests | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: cleanTest test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ makeevrserg.android.kotlinCompilerExtensionVersion=1.5.3 | |
# Project | ||
makeevrserg.project.name=ApplicationTemplate | ||
makeevrserg.project.group=com.makeevrserg.applicationtemplate | ||
makeevrserg.project.version.string=1.0.0 | ||
makeevrserg.project.version.string=1.0.1 | ||
makeevrserg.project.version.code=11 | ||
makeevrserg.project.description=Template for KMP applcation | ||
makeevrserg.project.developers=makeevrserg|Makeev Roman|[email protected] | ||
|