Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. workflows:
  2. version: 2
  3. workflow:
  4. jobs:
  5. - test_unit
  6. - test_instrumentation:
  7. requires:
  8. - test_unit
  9.  
  10. - beta_deployment:
  11. filters:
  12. branches:
  13. only:
  14. - beta
  15. requires:
  16. - test_unit
  17. - test_instrumentation
  18.  
  19. - release_deployment:
  20. filters:
  21. branches:
  22. only:
  23. - master
  24. requires:
  25. - test_unit
  26. - test_instrumentation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement