File tree 2 files changed +31
-1
lines changed
rhea-core/src/test/java/uk/dsxt/rhea
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a Java project with Gradle
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3
+
4
+ name : Java CI with Gradle
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - master
10
+ pull_request :
11
+ branches :
12
+ - master
13
+
14
+ jobs :
15
+ build :
16
+
17
+ runs-on : ubuntu-latest
18
+
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ - name : Set up JDK 1.8
22
+ uses : actions/setup-java@v1
23
+ with :
24
+ java-version : 1.8
25
+ - name : Grant execute permission for gradlew
26
+ run : chmod +x gradlew
27
+ - name : Create gradle-wrapper.jar
28
+ run : gradle wrapper --gradle-version 5.2.1
29
+ - name : Build with Gradle
30
+ run : ./gradlew build
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ void stringTypeTest() throws InterruptedException {
43
43
Reloadable <String > stringProperty = config .get ("stringProperty" , PropertyTypesKt .stringType );
44
44
45
45
source .pushChanges ("stringProperty" , "something2" );
46
- Thread .sleep (10 );
46
+ Thread .sleep (25 );
47
47
48
48
assertEquals ("something2" , stringProperty .get ());
49
49
}
You can’t perform that action at this time.
0 commit comments