fix assertion triggered when CANCEL is held and sent later after 100 … #49
This file contains 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: | |
workflow_dispatch: | |
push: | |
jobs: | |
clang-analyzer: | |
name: Clang static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y libtool libtool-bin libcurl4-openssl-dev libpcap-dev clang-tools | |
- run: | | |
./bootstrap.sh | |
scan-build ./configure --with-glib=no | |
scan-build --status-bugs make |