Skip to content

Modify README.md, client.h, collections.h, documents.h, and exception… #2

Modify README.md, client.h, collections.h, documents.h, and exception…

Modify README.md, client.h, collections.h, documents.h, and exception… #2

Workflow file for this run

name: Linux build
on:
push:
pull_request:
workflow_dispatch:
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 pkg-config libssl-dev
- name: Build
run: make
- name: Verify examples
run: |
test -f build/libhlqueryclient.a
test -x ./basic_usage
test -x ./flush
test -x ./hits_api_usage