Skip to content

chore(deps): Bump tonic from 0.12.2 to 0.12.3 in the opentelemetry group #16

chore(deps): Bump tonic from 0.12.2 to 0.12.3 in the opentelemetry group

chore(deps): Bump tonic from 0.12.2 to 0.12.3 in the opentelemetry group #16

Workflow file for this run

name: Rust
on: [push]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cache ~/.cargo
uses: Swatinem/rust-cache@v2
- name: rustup install
uses: actions-rs/[email protected]
with:
toolchain: stable
components: rustfmt
override: true
- name: cargo clippy
uses: actions-rs/[email protected]
with:
command: clippy
args: --all-targets --all-features
- name: cargo fmt --check
uses: actions-rs/[email protected]
with:
command: fmt
args: --check --all
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cache ~/.cargo
uses: Swatinem/rust-cache@v2
- name: rustup install
uses: actions-rs/[email protected]
with:
toolchain: stable
- name: Build
run: cargo build --all-features
- name: Test
run: cargo test