Skip to content

update opentelemetry deps and support otlp #480

update opentelemetry deps and support otlp

update opentelemetry deps and support otlp #480

Workflow file for this run

name: Test
on:
push:
branches: ["master"]
paths-ignore:
- "**/README.md"
pull_request:
paths-ignore:
- "**/README.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUSTC_WRAPPER: sccache
SCCACHE_GHA_ENABLED: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache cargo registry & git sources
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-test-
${{ runner.os }}-cargo-
- name: Run sccache
uses: mozilla-actions/sccache-action@v0.0.5
- name: Install toolchain
run: make setup
- name: Run tests
run: make test