Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/ci.env
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
CONAN_VERSION=2.29.1
CLANG_FORMAT_VERSION=21.1.8
CLANG_TIDY_VERSION=21.1.6
CONAN_VERSION=2.31.1
CLANG_FORMAT_VERSION=22.1.8
CLANG_TIDY_VERSION=22.1.8
CMAKELANG_VERSION=0.6.13
PYYAML_VERSION=6.0.3
GCOVR_VERSION=8.4
GCOVR_VERSION=8.6
DOXYGEN_VERSION=1.17.0
PRETTIER_VERSION=3.9.5
MARKDOWNLINT_CLI2_VERSION=0.23.0
RUFF_VERSION=0.15.21
PRETTIER_VERSION=3.9.6
MARKDOWNLINT_CLI2_VERSION=0.23.1
RUFF_VERSION=0.16.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ make coverage-report
```

Both compilers emit GCov-format data (`--coverage`), reported by a single tool:
[gcovr](https://gcovr.com) (`pip install gcovr`). It writes `coverage-report/index.html` and
`coverage.xml` under `build/coverage/`.
[gcovr](https://gcovr.com) (Python 3.10+; `pip install gcovr`). It writes
`coverage-report/index.html` and `coverage.xml` under `build/coverage/`.

The report fails if line coverage falls below `COVERAGE_FAIL_UNDER` (default 100; override with
`make coverage-report COVERAGE_FAIL_UNDER=80`).
Expand Down
Loading