Squelch 50 trivial warnings from Clang. #20
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: full-check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install_dependencies | |
run: sudo apt install libncurses5-dev libpcap-dev | |
- name: first_build | |
run: | | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
sudo make uninstall | |
make distclean | |
- name: second_build | |
run: | | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
- name: run_program | |
run: | | |
sudo sniffit | |