https://github.com/kubeflow/katib
Raw File
Tip revision: f33c32e7c610e52e49f932a82fb72197d276768f authored by avelichk on 05 March 2020, 18:42:22 UTC
Fix URL in README
Tip revision: f33c32e
.travis.yml
jobs:
  include:
    - name: "Go unit tests, gofmt, golint and coveralls"
      language: go
      go: "1.12.5"
      go_import_path: github.com/kubeflow/katib
      install:
        - curl -L -O "https://github.com/kubernetes-sigs/kubebuilder/releases/download/v1.0.7/kubebuilder_1.0.7_linux_amd64.tar.gz"
        - # extract the archive
        - tar -zxvf kubebuilder_1.0.7_linux_amd64.tar.gz
        - sudo mv kubebuilder_1.0.7_linux_amd64 /usr/local/kubebuilder
        - export PATH=$PATH:/usr/local/kubebuilder/bin
        # get coveralls.io support
        - go get github.com/mattn/goveralls
      script:
        - make check
        - make test
        - goveralls -coverprofile=coverage.out
    - name: "Prettier frontend check"
      language: node_js
      node_js: "10.13.0"
      install:
        - npm install --global prettier
      script:
        - make prettier-check
back to top