Fix string concatenation for curl headers in Client.cpp #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |