Skip to content

fix: socket2 breaking change #303

fix: socket2 breaking change

fix: socket2 breaking change #303

Workflow file for this run

name: Code Coverage
on: [push]
jobs:
cover:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install libpcap
run: |
sudo apt update
sudo apt install -y libpcap-dev
- name: Setup toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: "0.18.0"
args: --features raw --workspace
- name: Upload to codecov.io
uses: codecov/codecov-action@v2.1.0
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml