Give each packet type its own identifier #13
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cc: [clang, gcc] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install check | |
run: sudo apt-get install check | |
- name: Build scsniff | |
run: make | |
env: | |
CC: ${{matrix.cc}} | |
- name: Build and run tests | |
run: make check | |
env: | |
CC: ${{matrix.cc}} |