Skip to content

[Dubbo-python] Service Registration Implementation and Documentation … #10

[Dubbo-python] Service Registration Implementation and Documentation …

[Dubbo-python] Service Registration Implementation and Documentation … #10

Workflow file for this run

name: Run Unittests
on: [push, pull_request]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run unittests
run: |
python -m unittest discover -s tests -p 'test_*.py'