diff options
author | jacob janzen <53062115+JacobJanzen@users.noreply.github.com> | 2024-02-14 15:56:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 21:56:41 +0000 |
commit | cc4400b2e1dcca1839a8a8abd02054301a1fb040 (patch) | |
tree | 49c383b7daec6a51e15adfb8b2dda84e67f30942 /.github | |
parent | b57c21da92563eed58867a9a6b02c201006cbc57 (diff) |
Create c-cpp.yml (#1)
* Create c-cpp.yml
* fix pipeline
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/c-cpp.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..3342e3d --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,25 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: autoreconf + run: autoreconf --install + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck |