Create c-cpp.yml (#1)

* Create c-cpp.yml

* fix pipeline
This commit is contained in:
jacob janzen 2024-02-14 15:56:41 -06:00 committed by GitHub
parent b57c21da92
commit cc4400b2e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
.github/workflows/c-cpp.yml vendored Normal file
View file

@ -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