Module: monitoring-plugins Branch: RincewindsHat-patch-1 Commit: 7dba87b95bfd2dd0ec0089ddc78e2f1afb2ea258 Author: Lorenz <12514511+rincewinds...@users.noreply.github.com> Committer: GitHub <nore...@github.com> Date: Tue Aug 23 18:45:12 2022 +0200 URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=7dba87b
Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck