From 90dae1b40c0ef85333d6c6460b8879dc6a493375 Mon Sep 17 00:00:00 2001 From: Rayed Hasan Date: Thu, 2 Apr 2026 16:01:41 +0530 Subject: [PATCH 1/2] Add GitHub Actions workflow for build processAdd CI --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4bf2904 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: Build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y cmake build-essential libssl-dev + + - name: Configure CMake + run: cmake -B build -DCMAKE_BUILD_TYPE=Release + + - name: Build + run: cmake --build build --config Release + From 403130de0e8f13b7b27f776916e7268eff25051c Mon Sep 17 00:00:00 2001 From: Rayed Hasan Date: Thu, 2 Apr 2026 16:27:01 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4dd6cb7..30a28e6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Claw Code (C++ Edition) 🚀 +![Build](https://github.com/Rayed-Hasan/claw-code-cpp/actions/workflows/build.yml/badge.svg) + ![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg) ![C++20](https://img.shields.io/badge/C++-20-blue.svg) ![Build](https://img.shields.io/badge/build-CMake-green.svg)