-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup duplicated code with stdlib (#14)
* clean duplicated code * make detekt happy * update license year * update dependencies versions
- Loading branch information
1 parent
9241e5e
commit d7385a0
Showing
16 changed files
with
176 additions
and
100 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,13 +5,22 @@ on: | |
pull_request: | ||
|
||
jobs: | ||
code-smell: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: 'Qodana Scan' | ||
uses: JetBrains/[email protected] | ||
with: | ||
linter: jetbrains/qodana-jvm | ||
|
||
test: | ||
runs-on: ${{ matrix.os }} | ||
name: Build & Test - Java ${{ matrix.java }} on ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-latest] | ||
java: [ 8, 11, 16 ] | ||
os: [ windows-latest, ubuntu-latest ] | ||
java: [ 8, 11, 17 ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -23,8 +32,8 @@ jobs: | |
- name: Build lib | ||
run: ./gradlew assemble | ||
|
||
- name: Run tests | ||
run: ./gradlew test --info | ||
|
||
- name: Check styling using Detekt | ||
run: ./gradlew detekt --info | ||
|
||
- name: Run tests | ||
run: ./gradlew test --info |
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
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
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
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
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
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
Oops, something went wrong.