.travis.yml 256 B

1234567891011121314151617
  1. sudo: true
  2. language: python
  3. env:
  4. - TARGET="lint"
  5. - TARGET="build-with-dependencies"
  6. before_script:
  7. - pip install ufolint
  8. - sudo apt-get -qq update
  9. - sudo apt-get install -y shellcheck
  10. script:
  11. - make -j $TARGET
  12. notifications:
  13. email: false