chore(deps): update dependency nlohmann/json to v3.11.3 #42
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: test-cpp | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
paths: | |
- cpp/** | |
- testdata/** | |
- gherkin-languages.json | |
pull_request: | |
branches: | |
- main | |
paths: | |
- cpp/** | |
- testdata/** | |
- gherkin-languages.json | |
workflow_call: | |
jobs: | |
test-cpp: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install cmake and libraries | |
run: | | |
sudo apt-get update | |
sudo apt-get install ninja-build cmake | |
sudo apt-get install nlohmann-json3-dev | |
ninja --version | |
cmake --version | |
gcc --version | |
- name: configure and build | |
env: | |
NPROCS: 1 | |
run: | | |
make acceptance | |
working-directory: cpp |