Skip to content

Instantly share code, notes, and snippets.

View vcheruk2's full-sized avatar
🏠
Working from home

Venkata Ravichandra Cherukuri vcheruk2

🏠
Working from home
  • Santa Clara
View GitHub Profile
@vcheruk2
vcheruk2 / recipe_.circleci_config.yml
Created April 11, 2020 21:07
Ingredient Servie Impl / Test Failure
version: 2.1
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point
working_directory: ~/circleci-demo-java-spring # directory where steps will run
docker: # run the steps with Docker
- image: circleci/openjdk:11.0.3-jdk-stretch # ...with this image as the primary container; this is where all `steps` will run
steps: # a collection of executable commands
@vcheruk2
vcheruk2 / pet-clinic_.circleci_config.yml
Created April 2, 2020 04:31
JUnit 5 NPE after @InjectMock successful
version: 2.1
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point
working_directory: ~/circleci-pet-clinic # directory where steps will run
docker: # run the steps with Docker
- image: circleci/openjdk:11.0.3-jdk-stretch # ...with this image as the primary container; this is where all `steps` will run
steps: # a collection of executable commands