Skip to content

Fix string concatenation for curl headers in Client.cpp #7

Fix string concatenation for curl headers in Client.cpp

Fix string concatenation for curl headers in Client.cpp #7

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