.travis.yml 489 B

12345678910111213141516171819202122
  1. # Travis CI build for checking the integrity of lisp/s-expression files in the
  2. # SuperTux data repository.
  3. language: python
  4. python:
  5. - "3.5"
  6. # Use containerized infrastructure, for faster builds.
  7. sudo: false
  8. addons:
  9. apt:
  10. packages:
  11. - findutils
  12. install:
  13. - true
  14. script:
  15. - python --version
  16. - find . -type f \( -iname '*.stf' -o -iname '*.stl' -o -iname '*.stoi' -o -iname '*.strf' -o -iname '*.stwm' -o -iname '*.stxt' \) -print0 | xargs -0 -P 1 -n 1 tools/lispchecker