Skip to content

chore(deps): bump bytes from 1.7.2 to 1.8.0 in the minor group #1047

chore(deps): bump bytes from 1.7.2 to 1.8.0 in the minor group

chore(deps): bump bytes from 1.7.2 to 1.8.0 in the minor group #1047

Workflow file for this run

name: Coverage
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-coverage
cancel-in-progress: true
jobs:
test:
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
- uses: Swatinem/rust-cache@v2
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Generate code coverage
run: |
cargo +nightly llvm-cov --tests --all-features --lcov --output-path lcov.info
- name: Coveralls
uses: coverallsapp/github-action@v2