AX-688 - Add unit tests for net_io.c protocol parsers (Round 12) #27
Workflow file for this run
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
| name: test | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: [dev, main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install build dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential libzstd-dev zlib1g-dev libncurses-dev | |
| - name: Build readsb | |
| run: make -j$(nproc) | |
| - name: Run unit tests | |
| run: make test | |
| - name: Run integration tests | |
| run: make inttest |