OpenAPI 3.1.0 Add webhooks support #59
Workflow file for this run
This file contains 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: Samples c libcurl client | |
on: | |
push: | |
paths: | |
- 'samples/client/petstore/c/**' | |
pull_request: | |
paths: | |
- 'samples/client/petstore/c/**' | |
jobs: | |
build: | |
name: Build c libcurl client | |
runs-on: ubuntu-latest | |
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: "samples/client/petstore/c" | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make |