.travis.yml 384 B

1234567891011
  1. jobs:
  2. include:
  3. - language: python
  4. python: 3.7
  5. install:
  6. - pip install rt-thread-studio
  7. before_script:
  8. - sudo apt-get update
  9. stage: check-yaml-format
  10. script:
  11. - python -c "from rt_thread_studio import bsp_checker;bsp_path = '.';checker = bsp_checker.BspChecker(bsp_path);checker.check();"