forked from loafle/openapi-generator-original
* [C] Don't convert post body strings to JSON If the body provided for the api request is a just a string itself, don't try to convert it to JSON, simply submit the string. * [C] Implement BearerToken authentication * [C] Handle nullable fields correctly * [C] Fix implementation of FromString for enums * [C] Update the test schemas to cover the changes * Update samples * Fix the updated samples * [C] Add the new samples folder to the CI workflow
40 lines
1003 B
YAML
40 lines
1003 B
YAML
name: Samples c libcurl client
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'samples/client/petstore/c/**'
|
|
- 'samples/client/petstore/c-useJsonUnformatted/**'
|
|
- 'samples/client/others/c/bearerAuth/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/client/petstore/c/**'
|
|
- 'samples/client/petstore/c-useJsonUnformatted/**'
|
|
- 'samples/client/others/c/bearerAuth/**'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build c libcurl client
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- 'samples/client/petstore/c/'
|
|
- 'samples/client/petstore/c-useJsonUnformatted/'
|
|
- 'samples/client/others/c/bearerAuth/'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Prepare
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libssl-dev libcurl4-openssl-dev
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|