summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authortazy <gardendistrict0x0@outlook.com>2026-02-22 14:37:17 +1100
committerGitHub <noreply@github.com>2026-02-22 14:37:17 +1100
commit3534604232b8c46334ef5d34620bbaf5182ffdd8 (patch)
tree1f2569534644b911be16e411a05a254ec362689a /.github
parent7ea1ad03b5a86e75dfa1d3c381487fa11d09b460 (diff)
git(ci/cd): Create make CI/CD workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/c-cpp.yml23
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..fbf32ec
--- /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@v4
+ - name: configure
+ run: ./configure
+ - name: make
+ run: make
+ - name: make check
+ run: make check
+ - name: make distcheck
+ run: make distcheck