gopkg.in/openshift/source-to-image.v1@v1.2.0/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.12.x
     5  
     6  install:
     7    - make install-travis
     8  
     9  script:
    10    - make verify
    11    - make check TESTFLAGS="-p=4" TESTS="''" # empty quotes are because hack/test-go.sh requires 2 args
    12  
    13  notifications:
    14    irc: "chat.freenode.net#openshift-dev"
    15  
    16  sudo: false
    17  
    18  matrix:
    19    allow_failures:
    20    - go: master
    21    fast_finish: true