Send empty packet before initial delay. #144
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: C/C++ CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install packages | |
run: sudo apt-get -y install libbsd-dev | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Make build | |
run: make | |
- name: Make test | |
run: make test | |
- name: Make install | |
run: sudo make install |