fix: Mark all packets TX'ed before PTO as lost #67
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
name: Machete | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths-ignore: ["*.md", "*.png", "*.svg", "LICENSE-*"] | |
merge_group: | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
machete: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Rust | |
uses: ./.github/actions/rust | |
with: | |
tools: cargo-machete | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check for unused dependencies | |
run: | | |
# --with-metadata has false positives, see https://github.com/bnjbvr/cargo-machete/issues/127 | |
cargo machete |