checks-dummy.yml 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. name: Checks
  3. on:
  4. pull_request:
  5. paths-ignore: # This MUST be kept in sync with the paths key for the checks.yml workflow.
  6. - '**.c'
  7. - '**.cc'
  8. - '**.h'
  9. - '**.hh'
  10. - '**.in'
  11. - '!netdata.spec.in'
  12. - 'configure.ac'
  13. - '**/Makefile*'
  14. - 'Makefile*'
  15. - '.gitignore'
  16. - '.github/workflows/checks.yml'
  17. - 'build/**'
  18. - 'aclk/aclk-schemas/'
  19. - 'ml/dlib/'
  20. - 'mqtt_websockets'
  21. - 'web/server/h2o/libh2o'
  22. env:
  23. DISABLE_TELEMETRY: 1
  24. concurrency:
  25. group: checks-${{ github.ref }}
  26. cancel-in-progress: true
  27. jobs:
  28. libressl-checks:
  29. name: LibreSSL
  30. runs-on: ubuntu-latest
  31. steps:
  32. - run: "echo 'NOT REQUIRED'"
  33. clang-checks:
  34. name: Clang
  35. runs-on: ubuntu-latest
  36. steps:
  37. - run: "echo 'NOT REQUIRED'"
  38. gitignore-check:
  39. name: .gitignore
  40. runs-on: ubuntu-latest
  41. steps:
  42. - run: "echo 'NOT REQUIRED'"