Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/lint_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,24 @@ jobs:
- name: Run tests
run: tox -e lint-opentelemetry-exporter-otlp-proto-common

lint-opentelemetry-exporter-otlp-json-common:
name: opentelemetry-exporter-otlp-json-common
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install tox
run: pip install tox

- name: Run tests
run: tox -e lint-opentelemetry-exporter-otlp-json-common

lint-opentelemetry-exporter-otlp-combined:
name: opentelemetry-exporter-otlp-combined
runs-on: ubuntu-latest
Expand Down Expand Up @@ -232,6 +250,24 @@ jobs:
- name: Run tests
run: tox -e lint-opentelemetry-exporter-otlp-proto-http

lint-opentelemetry-exporter-otlp-json-http:
name: opentelemetry-exporter-otlp-json-http
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install tox
run: pip install tox

- name: Run tests
run: tox -e lint-opentelemetry-exporter-otlp-json-http

lint-opentelemetry-exporter-prometheus:
name: opentelemetry-exporter-prometheus
runs-on: ubuntu-latest
Expand Down
Loading
Loading