Add an OTLP receiver to Weaver to prepare for the weaver registry live-check
command
#1363
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
name: Validate the Cargo workspace. | |
on: [pull_request] | |
jobs: | |
validate-workspace: | |
name: Validate workspace | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run cargo xtask validate | |
run: cargo xtask validate |