summaryrefslogtreecommitdiff
path: root/libs/cpp-httplib/.github/workflows/test_proxy.yaml
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
commitd8c4d84dc75300c6d4d8b0adceafa33741960b92 (patch)
tree00e2dfcc5c836d62fccff76c862e6ec3b0a74db8 /libs/cpp-httplib/.github/workflows/test_proxy.yaml
parentfa088bb60692ba02d30d39affa9a31d9e2b688e2 (diff)
added http lib, working on AI invoice importing
Diffstat (limited to 'libs/cpp-httplib/.github/workflows/test_proxy.yaml')
-rw-r--r--libs/cpp-httplib/.github/workflows/test_proxy.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/cpp-httplib/.github/workflows/test_proxy.yaml b/libs/cpp-httplib/.github/workflows/test_proxy.yaml
new file mode 100644
index 0000000..571dc96
--- /dev/null
+++ b/libs/cpp-httplib/.github/workflows/test_proxy.yaml
@@ -0,0 +1,20 @@
+name: Proxy Test
+
+on: [push, pull_request]
+
+jobs:
+ test-proxy:
+ runs-on: ubuntu-latest
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y build-essential libssl-dev zlib1g-dev libcurl4-openssl-dev libbrotli-dev libzstd-dev netcat-openbsd
+
+ - name: Run proxy tests
+ run: |
+ cd test && make proxy \ No newline at end of file