Skip to content

Update directory structure for includes #6

Update directory structure for includes

Update directory structure for includes #6

Workflow file for this run

name: C++ Build Workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build Kyte C++ Library
runs-on: ubuntu-latest # You can specify other runners like windows-latest or macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev libssl-dev -y # Ensure all necessary libraries are installed
- name: Build project
run: |
make -C . # Use make in the root directory where the Makefile is located