diff options
author | Lorenz <12514511+RincewindsHat@users.noreply.github.com> | 2022-08-23 16:45:12 (GMT) |
---|---|---|
committer | rincewind <rincewind@lense.vulgrim.de> | 2023-01-27 13:18:17 (GMT) |
commit | 77dbbbb5f678e49eae3dd5759f0c48f007e5db12 (patch) | |
tree | 988d988c4225bfcf6b23309cc1d841447d5a913e /.github/workflows/c-cpp.yml | |
parent | 67b472f9d1d29b9de5312c46f13ca4f5a656c4da (diff) | |
download | monitoring-plugins-77dbbbb5f678e49eae3dd5759f0c48f007e5db12.tar.gz |
Create c-cpp.yml
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r-- | .github/workflows/c-cpp.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..a383a52 --- /dev/null +++ b/.github/workflows/c-cpp.yml | |||
@@ -0,0 +1,23 @@ | |||
1 | name: C/C++ CI | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ "master" ] | ||
6 | pull_request: | ||
7 | branches: [ "master" ] | ||
8 | |||
9 | jobs: | ||
10 | build: | ||
11 | |||
12 | runs-on: ubuntu-latest | ||
13 | |||
14 | steps: | ||
15 | - uses: actions/checkout@v3 | ||
16 | - name: configure | ||
17 | run: ./configure | ||
18 | - name: make | ||
19 | run: make | ||
20 | - name: make check | ||
21 | run: make check | ||
22 | - name: make distcheck | ||
23 | run: make distcheck | ||