Skip to content

Commit 221f9d2

Browse files
committed
adding circleci (1)
1 parent ee03dd6 commit 221f9d2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.circleci/config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2.1
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: 'cimg/openjdk:8.0'
7+
steps:
8+
- checkout
9+
- run:
10+
name: Analyze on SonarCloud
11+
command: mvn verify sonar:sonar
12+
13+
executors:
14+
j8:
15+
docker:
16+
- image: 'cimg/openjdk:8.0'
17+
18+
orbs:
19+
maven: circleci/maven@1.4.0
20+
21+
workflows:
22+
maven_test:
23+
jobs:
24+
- maven/test:
25+
executor: j8
26+
- build:
27+
context: SonarCloud

0 commit comments

Comments
 (0)