diff options
author | Jan Haller <bromeon@gmail.com> | 2022-07-02 01:05:20 +0200 |
---|---|---|
committer | Jan Haller <bromeon@gmail.com> | 2022-07-02 01:17:35 +0200 |
commit | d38d76d039a20bfcbc0a8612fee1c9a37cc21c78 (patch) | |
tree | b37c34b08060ca85c12720d7587178defd425658 /.github/workflows/windows_builds.yml | |
parent | a2459c7d35eeaeea8b1d4fa9ce6c9cbe74f11643 (diff) |
Fix exit code of --help and --version, and test them in CI
Corrects prior regression which caused ERROR output and exit code of 1.
Diffstat (limited to '.github/workflows/windows_builds.yml')
-rw-r--r-- | .github/workflows/windows_builds.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index 4919f34cf0..e04d49adde 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -64,6 +64,8 @@ jobs: - name: Unit tests if: ${{ matrix.tests }} run: | + ${{ matrix.bin }} --version + ${{ matrix.bin }} --help ${{ matrix.bin }} --test - name: Prepare artifact |