Remove extra ` in README.md #723
Workflow file for this run
This file contains hidden or 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: Clang Static Analysis | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '3 15 * * SUN' | |
permissions: {} | |
jobs: | |
clang-analyzer: | |
name: Clang Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
persist-credentials: false | |
- name: Install clang-tools | |
run: sudo apt install clang-tools | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- name: Install dependencies | |
run: python -m pip install uv | |
- name: Build and run analyzer | |
# We exclude extension/libmaxminddb/ as libmaxminddb has its own workflow | |
# for this and we are not able to correct any issues with that code here. | |
run: scan-build --exclude extension/libmaxminddb/ --status-bugs uv build | |
env: | |
CFLAGS: "-Werror -Wall -Wextra" | |
MAXMINDDB_REQUIRE_EXTENSION: 1 |