Skip to content

Bump opentelemetry from 0.23.0 to 0.27.1 #143

Bump opentelemetry from 0.23.0 to 0.27.1

Bump opentelemetry from 0.23.0 to 0.27.1 #143

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- stable
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
components: rustfmt
- name: test
run: cargo test
- name: clippy
run: cargo clippy
- name: check formatting
run: cargo fmt -- --check