github.com/bitrise-io/go-xamarin@v0.0.0-20211005113058-bf60a8bae851/bitrise.yml (about)

     1  format_version: 9
     2  default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
     3  
     4  app:
     5    envs:
     6    - RELEASE_VERSION: 1.2.0
     7  
     8  workflows:
     9    ci:
    10      steps:
    11        - go-list:
    12        - golint:
    13        - errcheck:
    14        - go-test:
    15  
    16    dep-update:
    17      steps:
    18        - script:
    19            inputs:
    20              - content: |-
    21                  #!/bin/bash
    22                  set -ex
    23                  go get -u -v github.com/golang/dep/cmd/dep
    24                  dep ensure -v
    25                  dep ensure -v -update