Skip to content

Instantly share code, notes, and snippets.

@worldofprasanna
Last active April 26, 2019 01:44
Show Gist options
  • Select an option

  • Save worldofprasanna/75a2441af9340b1e8c6b8e225dfb3a1b to your computer and use it in GitHub Desktop.

Select an option

Save worldofprasanna/75a2441af9340b1e8c6b8e225dfb3a1b to your computer and use it in GitHub Desktop.
First workflow - medium post
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