Skip to content

Commit 8055050

Browse files
committed
fix: add circleci
1 parent 7fea1ac commit 8055050

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2.1
2+
orbs:
3+
codecov: codecov/codecov@3
4+
5+
jobs:
6+
build:
7+
docker:
8+
- image: cimg/openjdk:18.0.2
9+
steps:
10+
- checkout
11+
- run:
12+
name: Install dependencies, run tests, and collect coverage
13+
command: gradle build
14+
- codecov/upload
15+
16+
workflow:
17+
version: 2.1
18+
build-test:
19+
jobs:
20+
- build

0 commit comments

Comments
 (0)