Remove dependency on capi_param_builder in python bizSDK #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- python-version: '3.9' | |
tox-env: py39 | |
- python-version: '3.10' | |
tox-env: py310 | |
- python-version: '3.11' | |
tox-env: py311 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Test with tox | |
run: | | |
pip install tox | |
tox -e ${{ matrix.tox-env }} |