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