Skip to content

Commit ebc24f7

Browse files
authored
Merge pull request #2 from Rayed-Hasan/master
Master
2 parents 5e06e58 + 51e0673 commit ebc24f7

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Install dependencies
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install -y cmake build-essential libssl-dev
19+
20+
- name: Configure CMake
21+
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
22+
23+
- name: Build
24+
run: cmake --build build --config Release
25+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Claw Code (C++ Educational Skeleton) 🛠️🤖
22

3+
![Build](https://github.com/Rayed-Hasan/claw-code-cpp/actions/workflows/build.yml/badge.svg)
4+
35
![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)
46
![C++20](https://img.shields.io/badge/C++-20-blue.svg)
57

0 commit comments

Comments
 (0)