Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: add circleci
  • Loading branch information
thomasrockhu committed Aug 18, 2022
commit 80550502a62d571e0dac7d9aede7a665953cdef9
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2.1
orbs:
codecov: codecov/codecov@3

jobs:
build:
docker:
- image: cimg/openjdk:18.0.2
steps:
- checkout
- run:
name: Install dependencies, run tests, and collect coverage
command: gradle build
- codecov/upload

workflow:
version: 2.1
build-test:
jobs:
- build