Skip to content

Commit 0c9c624

Browse files
authored
Update generate-workflows (open-telemetry#4192)
Fixes open-telemetry#4191
1 parent d5fb2c4 commit 0c9c624

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/contrib_0.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,6 +2060,34 @@ jobs:
20602060
- name: Run tests
20612061
run: tox -e py38-test-instrumentation-aio-pika-3 -- -ra
20622062

2063+
py38-test-instrumentation-aiokafka:
2064+
name: instrumentation-aiokafka
2065+
runs-on: ubuntu-latest
2066+
steps:
2067+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
2068+
uses: actions/checkout@v4
2069+
with:
2070+
repository: open-telemetry/opentelemetry-python-contrib
2071+
ref: ${{ env.CONTRIB_REPO_SHA }}
2072+
2073+
- name: Checkout core repo @ SHA - ${{ github.sha }}
2074+
uses: actions/checkout@v4
2075+
with:
2076+
repository: open-telemetry/opentelemetry-python
2077+
path: opentelemetry-python-core
2078+
2079+
- name: Set up Python 3.8
2080+
uses: actions/setup-python@v5
2081+
with:
2082+
python-version: "3.8"
2083+
architecture: "x64"
2084+
2085+
- name: Install tox
2086+
run: pip install tox
2087+
2088+
- name: Run tests
2089+
run: tox -e py38-test-instrumentation-aiokafka -- -ra
2090+
20632091
py38-test-instrumentation-kafka-python:
20642092
name: instrumentation-kafka-python
20652093
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)