File tree 1 file changed +26
-4
lines changed
1 file changed +26
-4
lines changed Original file line number Diff line number Diff line change 10
10
branches : [ master ]
11
11
12
12
jobs :
13
+ lint :
14
+
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - name : Fetch configlet
20
+ run : bin/fetch-configlet
21
+ - name : Lint
22
+ run : bin/configlet lint .
23
+
13
24
build :
14
25
15
26
runs-on : ubuntu-latest
@@ -20,11 +31,22 @@ jobs:
20
31
uses : actions/setup-java@v1
21
32
with :
22
33
java-version : 1.8
23
- - name : Fetch configlet
24
- run : bin/fetch-configlet
25
- - name : Lint
26
- run : bin/configlet lint .
27
34
- name : Grant execute permission for gradlew
28
35
run : chmod +x gradlew
29
36
- name : Compile and checkstyle with Gradle
30
37
run : cd exercises && ../gradlew check compileStarterSourceJava --parallel --continue
38
+
39
+ test :
40
+
41
+ runs-on : ubuntu-latest
42
+
43
+ steps :
44
+ - uses : actions/checkout@v2
45
+ - name : Set up JDK 1.8
46
+ uses : actions/setup-java@v1
47
+ with :
48
+ java-version : 1.8
49
+ - name : Grant execute permission for gradlew
50
+ run : chmod +x gradlew
51
+ - name : Journey test
52
+ run : bin/journey-test.sh
You can’t perform that action at this time.
0 commit comments