Skip to content

fix: Add python-swiftclient to dependencies #2

fix: Add python-swiftclient to dependencies

fix: Add python-swiftclient to dependencies #2

Workflow file for this run

---
name: Python package
"on":
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox
- name: Test with tox
run: tox