treewide: Show man pages on -h/--help #117
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
jobs: | |
build_and_test: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
- run: sudo apt-get update | |
- uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: gcc-10 clang clang-format clang-tidy cppcheck xvfb xsel libxfixes-dev libx11-dev | |
version: 1.0 | |
- run: gcc --version | |
- run: make clean analyse | |
- run: make tests | |
- run: make integration_tests | |
env: | |
NO_PID_NAMESPACE: 1 | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: |