Update CI workflow to modify build steps

Removed configure, make check, and make distcheck steps. Added make tests and make examples steps.
This commit is contained in:
2026-03-14 15:00:36 -04:00
committed by GitHub
parent e618cef9d6
commit 10537e19a6

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

@@ -0,0 +1,21 @@
name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make
- name: make tests
run: make tests
- name: make examples
run: make examples