Skip to content

chore: update iam-python-sdk to v1.5.0 with Python 3.14 and Flask 3.1… #151

chore: update iam-python-sdk to v1.5.0 with Python 3.14 and Flask 3.1…

chore: update iam-python-sdk to v1.5.0 with Python 3.14 and Flask 3.1… #151

name: Test Package
# Triggers the workflow on push or pull request events
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: [3.8, 3.9]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Upgrade PIP
run: python -m pip install --upgrade pip setuptools wheel
- name: Install tox and any other packages
run: pip install -r requirements_dev.txt
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py