Last active
April 26, 2019 01:44
-
-
Save worldofprasanna/75a2441af9340b1e8c6b8e225dfb3a1b to your computer and use it in GitHub Desktop.
First workflow - medium post
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
| version: 2 | |
| jobs: | |
| unit_test: | |
| docker: | |
| - image: busybox:latest | |
| steps: | |
| - run: | |
| name: Unit Test | |
| command: echo "Going to run Unit Test" | |
| linting: | |
| docker: | |
| - image: busybox:latest | |
| steps: | |
| - run: | |
| name: Lint Test | |
| command: echo "Going to run Lint Test" | |
| workflows: | |
| version: 2 | |
| sample_pipeline: | |
| jobs: | |
| - unit_test | |
| - linting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment