mirror of
https://github.com/CLIUtils/CLI11.git
synced 2026-01-19 04:52:08 +00:00
Help priority adjustment (#1106)
Move the help generation priority higher so it triggers before config file processing. Fixes #1099 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
13
.github/workflows/tests.yml
vendored
13
.github/workflows/tests.yml
vendored
@@ -28,10 +28,11 @@ jobs:
|
||||
|
||||
- name: Get LCov
|
||||
run: |
|
||||
wget https://github.com/linux-test-project/lcov/releases/download/v1.16/lcov-1.16.tar.gz
|
||||
tar -xzf lcov-1.16.tar.gz
|
||||
cd lcov-1.16
|
||||
sudo make install
|
||||
sudo apt-get install ca-certificates lcov
|
||||
#wget https://github.com/linux-test-project/lcov/releases/download/v1.16/lcov-1.16.tar.gz
|
||||
#tar -xzf lcov-1.16.tar.gz
|
||||
#cd lcov-1.16
|
||||
#sudo make install
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
@@ -50,8 +51,8 @@ jobs:
|
||||
|
||||
- name: Prepare coverage
|
||||
run: |
|
||||
lcov --directory . --capture --output-file coverage.info
|
||||
lcov --remove coverage.info '*/tests/*' '*/examples/*' '/usr/*' '*/book/*' '*/fuzz/*' --output-file coverage.info
|
||||
lcov --ignore-errors gcov,mismatch --directory . --capture --output-file coverage.info
|
||||
lcov --remove coverage.info '*/tests/*' '/usr/*' --output-file coverage.info
|
||||
lcov --list coverage.info
|
||||
working-directory: build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user