Skip to content

release 3.0.0

release 3.0.0 #31

Workflow file for this run

name: Ubuntu compilation and tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Install tshark
run: sudo apt-get install -y tshark
- name: Run doc tests
run: cargo test --doc
- name: Run unit tests
run: cargo test --lib -- --test-threads=1