Add System and SAM helper APIs and harden HTTP request handling. #13
This file contains hidden or 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: macOS Build | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| run: | | |
| brew install openssl pkg-config | |
| - name: Build | |
| run: | | |
| export PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" | |
| make | |
| - name: Verify examples | |
| run: | | |
| test -f build/libhlqueryclient.a | |
| test -x ./basic_usage | |
| test -x ./flush | |
| test -x ./hits_api_usage |