File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ name : sonar-checkstyle-workflows
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ mvn-install-java-8 :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Set up JDK 8
15+ uses : actions/setup-java@v1
16+ with :
17+ java-version : 8
18+ - name : install
19+ run : " ./.ci/travis.sh install"
20+
21+ mvn-install-java-11 :
22+ runs-on : ubuntu-latest
23+ steps :
24+ - uses : actions/checkout@v2
25+ - name : Set up JDK 11
26+ uses : actions/setup-java@v1
27+ with :
28+ java-version : 11
29+ - name : install
30+ run : " ./.ci/travis.sh install"
31+
32+ integration-tests :
33+ runs-on : ubuntu-latest
34+ steps :
35+ - uses : actions/checkout@v2
36+ - name : Set up JDK 11
37+ uses : actions/setup-java@v1
38+ with :
39+ java-version : 11
40+ - name : run integration tests
41+ run : " ./.ci/travis.sh integration-tests"
42+
43+ nondex :
44+ runs-on : ubuntu-latest
45+ steps :
46+ - uses : actions/checkout@v2
47+ - name : Set up JDK 11
48+ uses : actions/setup-java@v1
49+ with :
50+ java-version : 11
51+ - name : install
52+ run : " ./.ci/travis.sh nondex"
53+
You can’t perform that action at this time.
0 commit comments