github.com/yourbase/yb@v0.7.1/cmd/yb/init_templates/python.yml (about)

     1  # YourBase build configuration
     2  # See https://docs.yourbase.io/ for reference.
     3  
     4  dependencies:
     5    build:
     6      - python:3.6.3
     7  
     8  build_targets:
     9    - name: default
    10      commands:
    11        - pip install -r requirements.txt
    12        - python tests.py
    13  
    14  # This section configures which targets get built on CI.
    15  ci:
    16    builds:
    17      - name: default
    18        build_target: default
    19        # If you only want certain events, uncomment the following line.
    20        # when: branch IS 'main' OR action IS 'pull_request'