Guest User

Untitled

a guest
Jan 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. pycodestyle:
  2.  
  3. stage: code-linting
  4.  
  5. script:
  6. - mkdir code-to-test
  7. - cd code-to-test && curl https://gitlab-instance.com/path/to/project/python-code
  8. # Check whether it downloaded successfully
  9. - ls -al
  10. - /bin/bash -c "pycodestyle ."
  11. # Remove folder afterwards
  12. - cd ../ && rm -r code-to-test
  13. - echo "Folder code-to-test deleted."
  14.  
  15. <html><body>You are being <a href="https://gitlab-instance.com/users/sign_in">redirected</a>.</body></html>
Add Comment
Please, Sign In to add comment