rust/ja4: Add capture files and expected output #15
Workflow file for this run
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
# Borrowed from https://github.com/jonhoo/rust-ci-conf/blob/6332a3af21a58f811a681a98cd44d0f5da8a1891/.github/workflows/test.yml | |
# See the [screencast] by Jon Gjengset. | |
# | |
# [screencast]: https://www.youtube.com/watch?v=xUH-4y92jPg | |
name: test | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
required: | |
name: ubuntu / ${{ matrix.toolchain }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable] | |
#XXX toolchain: [stable, beta] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install ${{ matrix.toolchain }} | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Install the latest stable `tshark` | |
# See https://launchpad.net/~wireshark-dev/+archive/ubuntu/stable | |
run: | | |
sudo apt update | |
sudo apt -y install software-properties-common # provides `add-apt-repository` | |
sudo add-apt-repository --yes ppa:wireshark-dev/stable | |
sudo apt update | |
sudo apt -y install tshark | |
tshark --version | |
- run: cargo generate-lockfile | |
if: hashFiles('rust/Cargo.lock') == '' | |
# https://twitter.com/jonhoo/status/1571290371124260865 | |
- name: cargo test | |
run: cargo test --locked --all-features --all-targets --workspace | |
working-directory: rust/ | |
# https://github.com/rust-lang/cargo/issues/6669 | |
- name: cargo test --doc | |
run: cargo test --locked --all-features --doc --workspace | |
working-directory: rust/ |