bitbucket-pipelines.yml
changeset 1787 32115bf79d87
child 1796 4f7a0c40a7c3
equal deleted inserted replaced
1786:b6d47158d68a 1787:32115bf79d87
       
     1 image: python:2.7
       
     2 
       
     3 pipelines:
       
     4   custom: # Pipelines that are triggered manually
       
     5     checks: # The name that is displayed in the list in the Bitbucket Cloud GUI
       
     6         - step:
       
     7             caches:
       
     8                 - pip
       
     9             script: # Modify the commands below to build your repository.
       
    10               - pip install pycodestyle
       
    11               - python --version
       
    12               - ./tests/tools/check_source.sh
       
    13 
       
    14 
       
    15   default:
       
    16     - step:
       
    17         caches:
       
    18           - pip
       
    19         script: # Modify the commands below to build your repository.
       
    20           - pip install pycodestyle
       
    21           - python --version
       
    22           - ./tests/tools/check_source.sh