.travis.yml 346 B

12345678910111213141516171819202122
  1. # Enable validating this file
  2. version: ~> 1.0
  3. language: python
  4. python:
  5. - "3.9"
  6. sudo: false
  7. cache:
  8. directories:
  9. - "~/.platformio"
  10. jobs:
  11. include:
  12. - install:
  13. - pip install -U platformio
  14. - platformio update
  15. script: ./build_platformio.sh
  16. notifications:
  17. email:
  18. on_success: change
  19. on_failure: change