Skip to content

Instantly share code, notes, and snippets.

@evaporei
Created January 10, 2019 21:29
Show Gist options
  • Save evaporei/0095d85527c83210b76dba2e1d9abdf9 to your computer and use it in GitHub Desktop.
Save evaporei/0095d85527c83210b76dba2e1d9abdf9 to your computer and use it in GitHub Desktop.
Circle CI sample workflow
version: 2
jobs:
one:
docker:
- image: circleci/ruby:2.4.1
steps:
- checkout
- run: echo "A first hello"
- run: sleep 25
two:
docker:
- image: circleci/ruby:2.4.1
steps:
- checkout
- run: echo "A more familiar hi"
- run: sleep 15
workflows:
version: 2
one_and_two:
jobs:
- one
- two
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment