@@ -961,3 +961,98 @@ jobs:
961961
962962 - name : Run tests
963963 run : tox -e pypy3-test-processor-baggage -- -ra
964+
965+ py39-test-opamp-client_ubuntu-latest :
966+ name : opamp-client 3.9 Ubuntu
967+ runs-on : ubuntu-latest
968+ timeout-minutes : 30
969+ steps :
970+ - name : Checkout repo @ SHA - ${{ github.sha }}
971+ uses : actions/checkout@v4
972+
973+ - name : Set up Python 3.9
974+ uses : actions/setup-python@v5
975+ with :
976+ python-version : " 3.9"
977+
978+ - name : Install tox
979+ run : pip install tox-uv
980+
981+ - name : Run tests
982+ run : tox -e py39-test-opamp-client -- -ra
983+
984+ py310-test-opamp-client_ubuntu-latest :
985+ name : opamp-client 3.10 Ubuntu
986+ runs-on : ubuntu-latest
987+ timeout-minutes : 30
988+ steps :
989+ - name : Checkout repo @ SHA - ${{ github.sha }}
990+ uses : actions/checkout@v4
991+
992+ - name : Set up Python 3.10
993+ uses : actions/setup-python@v5
994+ with :
995+ python-version : " 3.10"
996+
997+ - name : Install tox
998+ run : pip install tox-uv
999+
1000+ - name : Run tests
1001+ run : tox -e py310-test-opamp-client -- -ra
1002+
1003+ py311-test-opamp-client_ubuntu-latest :
1004+ name : opamp-client 3.11 Ubuntu
1005+ runs-on : ubuntu-latest
1006+ timeout-minutes : 30
1007+ steps :
1008+ - name : Checkout repo @ SHA - ${{ github.sha }}
1009+ uses : actions/checkout@v4
1010+
1011+ - name : Set up Python 3.11
1012+ uses : actions/setup-python@v5
1013+ with :
1014+ python-version : " 3.11"
1015+
1016+ - name : Install tox
1017+ run : pip install tox-uv
1018+
1019+ - name : Run tests
1020+ run : tox -e py311-test-opamp-client -- -ra
1021+
1022+ py312-test-opamp-client_ubuntu-latest :
1023+ name : opamp-client 3.12 Ubuntu
1024+ runs-on : ubuntu-latest
1025+ timeout-minutes : 30
1026+ steps :
1027+ - name : Checkout repo @ SHA - ${{ github.sha }}
1028+ uses : actions/checkout@v4
1029+
1030+ - name : Set up Python 3.12
1031+ uses : actions/setup-python@v5
1032+ with :
1033+ python-version : " 3.12"
1034+
1035+ - name : Install tox
1036+ run : pip install tox-uv
1037+
1038+ - name : Run tests
1039+ run : tox -e py312-test-opamp-client -- -ra
1040+
1041+ py313-test-opamp-client_ubuntu-latest :
1042+ name : opamp-client 3.13 Ubuntu
1043+ runs-on : ubuntu-latest
1044+ timeout-minutes : 30
1045+ steps :
1046+ - name : Checkout repo @ SHA - ${{ github.sha }}
1047+ uses : actions/checkout@v4
1048+
1049+ - name : Set up Python 3.13
1050+ uses : actions/setup-python@v5
1051+ with :
1052+ python-version : " 3.13"
1053+
1054+ - name : Install tox
1055+ run : pip install tox-uv
1056+
1057+ - name : Run tests
1058+ run : tox -e py313-test-opamp-client -- -ra
0 commit comments