lint-pull-request.yml 635 B

12345678910111213141516171819202122
  1. name: "Build test + lint."
  2. on: pull_request
  3. jobs:
  4. ufbt-build-action:
  5. runs-on: ubuntu-latest
  6. name: "ufbt: Build for Dev branch"
  7. steps:
  8. - name: Checkout
  9. uses: actions/checkout@v3
  10. - name: Build with ufbt
  11. # Flipper Zero ufbt action
  12. # https://github.com/flipperdevices/flipperzero-ufbt-action
  13. uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
  14. id: build-app
  15. with:
  16. app-dir: ./fap
  17. sdk-channel: dev
  18. - name: Lint sources
  19. uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
  20. with:
  21. skip-setup: true
  22. task: lint