Skip to content

[Feature][Dubbo-python] Implement the basic functions of an RPC framework. #7

[Feature][Dubbo-python] Implement the basic functions of an RPC framework.

[Feature][Dubbo-python] Implement the basic functions of an RPC framework. #7

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.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run unittests
run: |
python -m unittest discover -s tests -p 'test_*.py'