File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments