Skip to content
Merged
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
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,28 @@ jobs:

- name: Package (dry run)
run: npm pack --dry-run

python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']

steps:
- uses: actions/checkout@v4

- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: python/pyproject.toml

- name: Install Python package with extras
run: python -m pip install -e "python[otel,validation]"

- name: Test Python package
run: PYTHONPATH=python python -m unittest discover -s python/tests

- name: Python package metadata smoke
run: python -m pip install -e python --dry-run
Loading