Bump opentelemetry_sdk from 0.24.1 to 0.26.0 #365
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**.rs" | |
- Cargo.toml | |
- Cargo.lock | |
- .github/workflows/cargo-build.yml | |
- rust-toolchain.toml | |
- "openapi/*.json" | |
pull_request: | |
paths: | |
- "**.rs" | |
- Cargo.toml | |
- Cargo.lock | |
- .github/workflows/cargo-build.yml | |
- rust-toolchain.toml | |
- "openapi/*.json" | |
permissions: read-all | |
name: cargo build | |
jobs: | |
cargobuild: | |
name: cargo build | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
libudev-dev | |
shell: bash | |
- name: Run cargo build | |
run: | | |
cargo build --workspace | |
shell: bash |