Skip to content

Improve HTTP Handling and Update Amalgamation #25

Improve HTTP Handling and Update Amalgamation

Improve HTTP Handling and Update Amalgamation #25

Workflow file for this run

name: Linux
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential gperf
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Python dependencies
run: |
pip install -r requirements.txt
- name: Build
run: |
mkdir build; cd build
cmake ..
make -j$(nproc)
- name: Test
run: |
cd build
ctest