Skip to content

Add RabbitMQ adapter #65

Add RabbitMQ adapter

Add RabbitMQ adapter #65

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
Template:
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run `cargo-tarpaulin`
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out xml --exclude-files src/external/**/* src/external/* src/bin/*
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.codecov_token }}
- name: Archive Results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: cobertura.xml