Created
April 3, 2020 19:09
-
-
Save promiseofcake/9252ae788aa2502806558dcba96e6ada to your computer and use it in GitHub Desktop.
Sample Workflow CircleCi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
build: | |
docker: | |
- image: circleci/<language>:<version TAG> | |
steps: | |
- checkout | |
- run: build | |
test: | |
docker: | |
- image: circleci/<language>:<version TAG> | |
steps: | |
- checkout | |
- run: test | |
deploy | |
docker: | |
- image: circleci/<language>:<version TAG> | |
steps: | |
- checkout | |
- run: deploy | |
workflows: | |
version: 2 | |
build_and_test: | |
jobs: | |
- build | |
- test | |
deploy_artifact: | |
jobs: | |
- deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment