Skip to content

feat: add optional support for serde, dockerfile and HTTP API #45

feat: add optional support for serde, dockerfile and HTTP API

feat: add optional support for serde, dockerfile and HTTP API #45

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
python-ci:
strategy:
matrix:
python_version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install tox==4.* tox-gh-actions==3.*
- name: Run tox
run: tox
working-directory: ./python