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

     1  # YourBase build configuration
     2  # See https://docs.yourbase.io/ for reference.
     3  
     4  # We couldn't determine what programming language your project uses,
     5  # so we generated a generic build configuration.
     6  
     7  build_targets:
     8    - name: default
     9      # Change 'make' to run the command you want.
    10      # You can also add more commands to be run in the list.
    11      commands:
    12        - make
    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'