python: run the Python samples tests with GitHub Actions (#16643)

This commit is contained in:
Jonathan Ballet
2023-09-22 04:45:18 +02:00
committed by GitHub
parent 29033bf62a
commit e5a29b6328
4 changed files with 71 additions and 6 deletions

View File

@@ -1,12 +1,11 @@
name: Python Client (Echo API)
on:
push:
paths:
- samples/client/echo_api/python/**
pull_request:
paths:
- samples/client/echo_api/python/**
- .github/workflows/samples-python-nextgen-client-echo-api.yaml
jobs:
build:
name: Test Python client
@@ -17,11 +16,17 @@ jobs:
sample:
# clients
- samples/client/echo_api/python
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
#- "3.11"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: ${{ matrix.python-version }}
- name: Setup node.js
uses: actions/setup-node@v3
- name: Run echo server
@@ -33,6 +38,7 @@ jobs:
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Test
working-directory: ${{ matrix.sample }}
run: python -m pytest