| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | sudo: truelanguage: genericmatrix:  include:    - os: linux      sudo: required      env:        - TARGET="lint"      before_script:        - pip install ufolint        - sudo apt-get -qq update        - sudo apt-get install -y shellcheck      script:        - make -j $TARGET    - os: linux      sudo: required      env:        - TARGET="build-with-dependencies"      before_script:        - pip install ufolint        - sudo apt-get -qq update        - sudo apt-get install -y shellcheck      script:        - make -j $TARGET    - os: osx      env:        - TARGET="lint"      before_install:        - brew update        - brew install python3        - virtualenv env -p python3        - source env/bin/activate      before_script:        - pip install ufolint        - brew install shellcheck      script:        - make -j $TARGET    - os: osx      env:        - TARGET="build-with-dependencies"      before_install:        - brew update        - brew install python3        - virtualenv env -p python3        - source env/bin/activate      script:        - make -j $TARGETnotifications:  email: false
 |