Improve INSTALL info (#21) #52
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: main CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
# install deps | |
- uses: actions/checkout@v2 | |
- name: install debian-packaged dependencies | |
run: sudo apt install -y automake libpcap-dev diffutils tcpdump tshark | |
# build & test | |
#- name: check C++ formatting -- TODO | |
# run: make format_check | |
- name: autogen | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: build large-pcap-analyzer | |
run: make | |
- name: run unit tests | |
run: make tests | |