Skip to content

Add etherparse-defrag #394

Add etherparse-defrag

Add etherparse-defrag #394

Workflow file for this run

name: codecoverage
on:
pull_request:
push:
branches:
- master
jobs:
codecoverage_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: llvm-tools-preview
- uses: actions-rs/cargo@v1
with:
command: install
args: cargo-binutils rustfilt
- name: Install jq
run: sudo apt install jq
- name: Determine coverage
run: coverage/coverage.bash
shell: bash
- name: Codecov
uses: codecov/codecov-action@v4
with:
files: target/coverage/export.lcov.txt
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}