Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
Updated comments.
  • Loading branch information
nhkhai committed May 1, 2024
1 parent 6465f5b commit a33bd11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ executors: # Executors define the environment in which the steps of a job will b

jobs:
publish: # Also known as the build-and-push.
executor: docker/docker
executor: docker/docker # This executor is provided by the circleci/docker orb.

steps:
- checkout
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
workflows:
ci_flow: # Workflow name. This is the name of the workflow, feel free to change it to better match your workflow.
jobs:
- maven/test: # This will use the CircleCI Maven Orb to do a mvn verify (which includes build and test), then generate the test report.
- maven/test: # This will use the circleci/maven orb to do a mvn verify (which includes build and test), then generate the test report.
executor: openjdk-with-postgres
filters:
branches:
Expand All @@ -79,7 +79,7 @@ workflows:

cicd_flow:
jobs:
- maven/test: # This will use the CircleCI Maven Orb to do a mvn verify (which includes build and test), then generate the test report.
- maven/test: # This will use the circleci/maven orb to do a mvn verify (which includes build and test), then generate the test report.
executor: openjdk-with-postgres
filters:
branches:
Expand Down

0 comments on commit a33bd11

Please sign in to comment.