Skip to content

⬆ Bump opentelemetry-exporter-otlp from 1.37.0 to 1.38.0 #72

⬆ Bump opentelemetry-exporter-otlp from 1.37.0 to 1.38.0

⬆ Bump opentelemetry-exporter-otlp from 1.37.0 to 1.38.0 #72

Workflow file for this run

name: Lint with Pre-commit
on:
pull_request:
branches: [master, main]
jobs:
pre-commit:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run pre-commit (all files on push, only changes on PR)
run: uv run pre-commit run --all-files --show-diff-on-failure --color always