File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ name : r2-lcp-kotlin
2+
3+ on :
4+ push :
5+ branches : [ develop ]
6+ pull_request :
7+ branches : [ develop ]
8+
9+ jobs :
10+ build :
11+ name : Build and test
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v2
17+ - name : Set up JDK 11
18+ uses : actions/setup-java@v2
19+ with :
20+ java-version : ' 11'
21+ distribution : ' adopt'
22+ - name : Build
23+ run : ./gradlew clean build -x test
24+ - name : Test
25+ run : ./gradlew test --continue
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ dependencies {
4343 if (findProject(' :r2-shared' )) {
4444 implementation project(' :r2-shared' )
4545 } else {
46- implementation " com.github.readium:r2-shared-kotlin:2.0.0 "
46+ implementation " com.github.readium:r2-shared-kotlin:develop-SNAPSHOT "
4747 }
4848
4949
You can’t perform that action at this time.
0 commit comments